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/] [vrp43.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-O2" } */ int __attribute__((noinline)) foo(int i) { if (i != 0) { char c = (char)i; return c != 0; } return 0; } extern void abort (void); int main() { if (foo(0xff00)) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log