Re: Insertng a call function

2005-07-29 Thread Diego Novillo
On Fri, Jul 29, 2005 at 11:05:56AM -0400, drizzle drizzle wrote: > Here is the patch, an header file, the test case. The only thing I > need is be able to insert a function call inside > linear-loop-transform. The error message I get is > > main.c:15: internal compiler error: in var_ann, at tree-

Re: Insertng a call function

2005-07-29 Thread Diego Novillo
On Fri, Jul 29, 2005 at 10:27:21AM -0400, drizzle drizzle wrote: > Could it be that it being done lower in the pass unlike insertions in > tree-profile, gomp - some ssa defintion information is missing. The > reason I have been led to think is because it fails > register_new_defintions. I would a

Re: Insertng a call function

2005-07-29 Thread drizzle drizzle
Could it be that it being done lower in the pass unlike insertions in tree-profile, gomp - some ssa defintion information is missing. The reason I have been led to think is because it fails register_new_defintions. I would appreciate any suggestions. thanks On 7/28/05, drizzle drizzle <[EMAIL P

Re: Insertng a call function

2005-07-28 Thread drizzle drizzle
Hi I updated my function call creating statement based on how gomp_parallel_end is inserted in the gomp branch. It still breaks. I have provided the function declaration in the file, just want to insert the call. Any further suggestions. My whole objective is to mark a few particular tree s

Re: Insertng a call function

2005-07-28 Thread Diego Novillo
On Thu, Jul 28, 2005 at 01:15:22PM -0400, drizzle drizzle wrote: > I am inserting a call stmt in linear_transform_loops. Al though > the call statement gets inserted , the compilation breaks. Can some > one help me identify if I am missing some information in the call > node that I create

Insertng a call function

2005-07-28 Thread drizzle drizzle
Hi I am inserting a call stmt in linear_transform_loops. Al though the call statement gets inserted , the compilation breaks. Can some one help me identify if I am missing some information in the call node that I create (thanks Daniel for all the help until now) here is the set of s