This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Extend dse



gcc-patches-owner@gcc.gnu.org wrote on 26/04/2007 21:44:51:

> Revital1 Eres wrote on 03/23/07 07:34:
>
> > I would like to propose the following patch to mainline:
> >
> > http://gcc.gnu.org/ml/gcc-patches/2007-03/msg01257.html
>
> After you re-work the store-ccp extension that we discussed earlier
> today, this will probably not be needed.  Regular DCE should catch these
> cases, right?

AFAICT regular DCE nor DSE eliminate cases like the following which this
patch aims to fix:

S[5].x = 0;
S[5].y = 0;

S[5].x = x;
S[5].y = y;

Thanks,
Revital


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]