PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / visium / cstore_fp.c
blob8849d1faba8a56c5bcf08a61687c16e9b22dd4f0
1 /* { dg-do compile } */
2 /* { dg-options "-O -fno-trapping-math" } */
4 int foo1 (float a, float b)
6 return (a < b);
9 int foo2 (float a, float b)
11 return (a > b);
14 int foo3 (float a, float b)
16 return !(a < b);
19 int foo4 (float a, float b)
21 return !(a > b);
24 /* { dg-final { scan-assembler-times "adc.l" 2 } } */
25 /* { dg-final { scan-assembler-times "subc.l" 2 } } */