List of simplifications we should perform

Andi Kleen ak@suse.de
Fri May 11 01:14:00 GMT 2001


Daniel Berlin <dan@www.cgsoftware.com> writes:

If this is supposed to be C...

> Simplifications for ~ and !:
> 
>    ! ! j			j

!!j is not j, it is j?1:0. 

> Simplifications for && (with control flow)
> 
> j && 1			j

j?1:0 again

> 1 && j                  j

Same.


-Andi



More information about the Gcc mailing list