* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git] / gcc / testsuite / gcc.dg / 20020418-2.c
blob93688d2703090d70c63b2c9c27b1b6f7350e5652
1 /* PR optimization/6010 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -funroll-all-loops" } */
4 /* { dg-options "-O2 -funroll-all-loops -march=pentium3" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */
6 void bar (float);
8 void foo (float y, unsigned long z)
10 int b;
11 float c = y;
13 for (b = 0; b < z; b++)
15 bar (c);
16 if (c == y)
17 c = -y;
18 else
19 c = y;