URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [pr21332.c] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-O2" } */ // this testcase fails also on amd64: extern void abort (void); int f () { return -1; } int main () { int b, c, i; b = 0; c = f (); if (c <= 0) { c = -c; for (i = 0; i < c; i++) b = 1; if (!b) abort (); } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log