Re: Inserting a call statement

2005-07-27 Thread Daniel Berlin
On Wed, 2005-07-27 at 13:39 -0400, drizzle drizzle wrote: > Thanks for your help. I am attaching my patch. Most of the code dont > modify anything. The code I am talking about is ia small piece in > tree-data-ref.c in a function insert_annotations. The only > modification in the rest of the code i

Re: Inserting a call statement

2005-07-27 Thread drizzle drizzle
Thanks for your help. I am attaching my patch. Most of the code dont modify anything. The code I am talking about is ia small piece in tree-data-ref.c in a function insert_annotations. The only modification in the rest of the code is that an extra variable refid is set for particular array referen

Re: Inserting a call statement

2005-07-27 Thread Daniel Berlin
On Wed, 2005-07-27 at 17:54 +0100, Paul Brook wrote: > On Wednesday 27 July 2005 17:33, drizzle drizzle wrote: > > Hi > > I am trying to insert a function call "foo" inside the tree list. > > > > > > Inside this particular loop > > for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next

Re: Inserting a call statement

2005-07-27 Thread Daniel Berlin
On Wed, 2005-07-27 at 12:58 -0400, drizzle drizzle wrote: > Its inside this function > > static inline var_ann_t > var_ann (tree t) > > from the error dump itseems to the following assertion > gcc_assert (DECL_P (t)) > > > thanks > I'm gonna need a lot more info than that. Maybe you shoul

Re: Inserting a call statement

2005-07-27 Thread drizzle drizzle
Its inside this function static inline var_ann_t var_ann (tree t) from the error dump itseems to the following assertion gcc_assert (DECL_P (t)) thanks On 7/27/05, Daniel Berlin <[EMAIL PROTECTED]> wrote: > On Wed, 2005-07-27 at 12:33 -0400, drizzle drizzle wrote: > > Hi > > I am t

Re: Inserting a call statement

2005-07-27 Thread Paul Brook
On Wednesday 27 July 2005 17:33, drizzle drizzle wrote: > Hi > I am trying to insert a function call "foo" inside the tree list. > > > Inside this particular loop > for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi)) > { > > //if a particular condition i

Re: Inserting a call statement

2005-07-27 Thread Daniel Berlin
On Wed, 2005-07-27 at 12:33 -0400, drizzle drizzle wrote: > Hi > I am trying to insert a function call "foo" inside the tree list. > > > Inside this particular loop > for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi)) > { > > //if a partic

Inserting a call statement

2005-07-27 Thread drizzle drizzle
Hi I am trying to insert a function call "foo" inside the tree list. Inside this particular loop for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi)) { //if a particular condition is satisfied I do the following tree id =