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-negeq0-1.c] - Rev 322
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2" } */ long foo(long x) { return -(x == 0); } long bar(long x) { long t = __builtin_clzl(x); return -(t>>(sizeof(long) == 8 ? 6 : 5)); } /* { dg-final { scan-assembler-not "cntlz" } } */
Go to most recent revision | Compare with Previous | Blame | View Log