URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20050702-1.c] - Rev 154
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2" } */ /* We going into an infinite loop in fold because we were mishandling the return value of fold_to_nonsharp_ineq_using_bound. */ _Bool f(); void g(int); void h (int old_size) { int new_size = old_size, i; g(old_size - 1); i = 0; while (i < old_size - 1) { if (f()) { i++; continue; } while (i < old_size - 1) i++; } g(new_size); }