Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.target / i386 / pr23098.c
blob3ff4b6435ccc207bd8cb66025c5a6c3e6722e5c9
1 /* PR rtl-optimization/23098 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fPIC" } */
4 /* { dg-final { scan-assembler-not "\.LC\[0-9\]" } } */
5 /* { dg-require-effective-target ilp32 } */
7 double foo (float);
9 double
10 f1 (void)
12 return foo (1.0);
15 double
16 f2 (void)
18 return foo (0.0);
21 void
22 f3 (float *x, float t)
24 *x = 0.0 + t;