This is the mail archive of the gcc-help@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]

Tr : [redundency elimination, code motion, commun expression elimination] GCC optimizations





hello,

If GCC could optimize this code 


if (x=1)
{
a=b;
c=d;
e=f;
foo();

}
if (x=2)
{
a=b;
c=d;
e=f;
foo();
}? 


to this one 


if (x=1) || (x=2)
{
a=b;
c=d;
e=f;
foo();
}

it will be implemented in which optimizations ? pre: partiel redundent elimination optimizaion or another one may be code motion ?

thank you very much

Asma


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