URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [powerpc/] [ppc-compare-1.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target { powerpc*-*-* && lp64 } } } */ /* { dg-options "-O2" } */ /* { dg-final { scan-assembler-not "cmpw" } } */ /* Origin:Pete Steinmetz <steinmtz@us.ibm.com> */ /* PR 16458: Extraneous compare. */ int foo (unsigned a, unsigned b) { if (a == b) return 1; if (a > b) return 2; if (a < b) return 3; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log