blob: 4574342e728dbc58e5ab13a9e1e52f35c4aed3ad (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* { dg-do run { xfail powerpc*-*-* } } */
/* remove the xfail for powerpc when pr58684 is fixed */
/* { dg-add-options ieee } */
/* { dg-require-effective-target fenv_exceptions } */
/* { dg-skip-if "fenv" { powerpc-ibm-aix* } } */
#include <fenv.h>
int
__attribute__ ((noinline, noclone))
f1 (float a, float b)
{
return __builtin_isless (a, b) || __builtin_isgreater (a, b);
}
int
__attribute__ ((noinline, noclone))
f2 (float a, float b)
{
return __builtin_islessgreater (a, b);
}
int
__attribute__ ((noinline, noclone))
f3 (float a, float b)
{
return a < b || a > b;
}
int
main (void)
{
volatile int r;
float nanf = __builtin_nanf ("");
float argf = 1.0f;
feclearexcept (FE_INVALID);
r = f1 (nanf, argf);
if (r != 0 || fetestexcept (FE_INVALID))
__builtin_abort ();
r = f2 (nanf, argf);
if (r != 0 || fetestexcept (FE_INVALID))
__builtin_abort ();
r = f3 (nanf, argf);
if (r != 0 || !fetestexcept (FE_INVALID))
__builtin_abort ();
return 0;
}
|