Re: Fusing two loops

2008-04-10 Thread Sandeep Maram
Hi Zdenek, Thanks. Sandeep. On Thu, Apr 10, 2008 at 7:29 PM, Zdenek Dvorak <[EMAIL PROTECTED]> wrote: > Hi, > > > The error is rectified. The bug is in the function that calls fuse_loops(). > > Now I am trying to transfer all the statements, using code - > > > > /* The following function fus

Re: Fusing two loops

2008-04-10 Thread Zdenek Dvorak
Hi, > The error is rectified. The bug is in the function that calls fuse_loops(). > Now I am trying to transfer all the statements, using code - > > /* The following function fuses two loops. */ > > void > fuse_loops (struct loop *loop_a, struct loop *loop_b) > { > debug_loop (loop_a, 10); >

Re: Fusing two loops

2008-04-10 Thread Sandeep Maram
Hi, The error is rectified. The bug is in the function that calls fuse_loops(). Now I am trying to transfer all the statements, using code - /* The following function fuses two loops. */ void fuse_loops (struct loop *loop_a, struct loop *loop_b) { debug_loop (loop_a, 10); debug_loop (loop_b,

Fwd: Fusing two loops

2008-04-09 Thread Sandeep Maram
-- Forwarded message -- From: Sandeep Maram <[EMAIL PROTECTED]> Date: Thu, Apr 10, 2008 at 11:57 AM Subject: Re: Fusing two loops To: Zdenek Dvorak <[EMAIL PROTECTED]> Hi Zdenek, I have written this function /* The following function fuses two loops. */ void

Re: Fusing two loops

2008-04-04 Thread Zdenek Dvorak
Hi, > I am trying to fuse two loops in tree level. For that, I am trying to > transfer statements in the header of one loop to the header of the > other one. > The code " http://rafb.net/p/fha0IG57.html " contains the 2 loops. > After moving a statement from one BB to another BB, do I need to

Fusing two loops

2008-04-04 Thread Sandeep Maram
Hi, I am trying to fuse two loops in tree level. For that, I am trying to transfer statements in the header of one loop to the header of the other one. The code " http://rafb.net/p/fha0IG57.html " contains the 2 loops. After moving a statement from one BB to another BB, do I need to update any