* name-lookup.h (lookup_field_1): Delete.
[official-gcc.git] / gcc / testsuite / gcc.target / sh / pr53512-2.c
bloba79e58adb749e7d27b8771d050ea44ee9304786e
1 /* Verify that the fsca insn is not used when specifying -mno-fsca and
2 -funsafe-math-optimizations. */
3 /* { dg-do compile { target { has_fsca } } } */
4 /* { dg-options "-O1 -mno-fsca -funsafe-math-optimizations" } */
5 /* { dg-final { scan-assembler-not "fsca" } } */
7 #include <math.h>
9 float
10 test_func_00 (float x)
12 return sinf (x) + cosf (x);
15 float
16 test_func_01 (float x)
18 return sinf (x);
21 float
22 test_func_02 (float x)
24 return cosf (x);