OSDN Git Service

* gcc.dg/torture/builtin-modf-1.c: Remove -funsafe-math-optimizations.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / torture / pr27136.c
1 /* { dg-do compile } */
2 /* { dg-options "-ffast-math" } */
3
4 void foo()
5 {
6   double x;
7
8   for (x = 2; x < 10; x *= x)
9     ;
10 }