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.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr21921.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O1 -funsafe-math-optimizations" } */ void Q (double *s, double h) { int i; if (h > 1) h = h - 1; for (i = 1; i < 3; i++) if (s[i] / h > 0) s[0] = h, s[i] = s[i] / h; }
Go to most recent revision | Compare with Previous | Blame | View Log