URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [ssa-ifcombine-7.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -fdump-tree-optimized" } */ int test1 (int i, int j) { if (i >= j) if (i != j) return 0; return -1; } /* The above should be optimized to a i > j test by ifcombine. */ /* { dg-final { scan-tree-dump " > " "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */