URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr28726.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR rtl-optimization/28726 */ /* Origin: Sigurd Schneider <sg313d@gmail.com> */ /* { dg-do run } */ /* { dg-options "-O2 -fsched2-use-superblocks" } */ extern void abort (void); static double my_loop(void) __attribute__((noinline)); static double my_loop(void) { double retval = 0.0; const unsigned char *start = "\005\b\000"; const unsigned char *const end = start + 2; while (start < end) retval += *start++; return retval; } int main(void) { if (my_loop() != 13.0) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log