blob: ec6452b8810d2afc1e409f1ec90136bdc83943e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* Check that only the fcmp/gt instruction is generated when specifying
-ffinite-math-only (implicit -mno-ieee). */
/* { dg-do compile { target { any_fpu } } } */
/* { dg-options "-O1 -ffinite-math-only" } */
/* { dg-final { scan-assembler-not "fcmp/eq" } } */
/* { dg-final { scan-assembler-times "fcmp/gt" 4 } } */
int
test_00 (float a, float b)
{
return a <= b;
}
int
test_01 (float a, float b)
{
return a >= b;
}
int
test_02 (double a, double b)
{
return a <= b;
}
int
test_03 (double a, double b)
{
return a >= b;
}
|