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/] [scev-1.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR tree-optimization/19899 */ /* Decrementing a floating-point variable in a loop caused an ICE. */ /* { dg-do run } */ /* { dg-options "-O -ftree-vectorize" } */ extern void abort (void); int main() { float i=1; while (i>=0) --i; if (i != -1) abort(); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log