[Patch] Silent gcc 4.2.0 loop optimization bug with -O2

Andrey Chernov ache at nagual.pp.ru
Wed Jul 4 19:01:52 UTC 2007


On Wed, Jul 04, 2007 at 02:12:08PM +0200, Ed Schouten wrote:
> > Index: tree-ssa-loop-niter.c
> > ===================================================================
> > --- tree-ssa-loop-niter.c       (revision 126260)
> > +++ tree-ssa-loop-niter.c       (working copy)
> > @@ -1747,6 +1747,12 @@ infer_loop_bounds_from_undefined (struct
> >      {
> >        bb = bbs[i];
> > 
> > +      /* If BB is not executed in each iteration of the loop, we cannot
> > +        use the operations in it to infer reliable upper bound on the
> > +        # of iterations of the loop.  */
> > +      if (!dominated_by_p (CDI_DOMINATORS, loop->latch, bb))
> > +       continue;
> > +
> >        for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
> >          {
> >           tree stmt = bsi_stmt (bsi);
> > 
> > I'm going to test this.
> > 
> ----- End forwarded message -----
> 
> I just tested the patch on my desktop and it seems to work. The test
> code now compiles like it should. Hopefully it will be part of 4.2.1.

Will be nice if this patch will be commited in instead of my 
sys.mk workaround. Alexander?

-- 
http://ache.pp.ru/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-current/attachments/20070704/379b1c1b/attachment.pgp


More information about the freebsd-current mailing list