blob: a5d673ad94f4bf2b783fae1e7eba28e213e347fc (
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
|
/* { dg-do run { target *-*-linux* } } */
/* { dg-options "-O2" } */
extern void abort(void);
int __attribute__ ((__noinline__))
test_lt(__float128 x, __float128 y)
{
return x < y;
}
int __attribute__ ((__noinline__))
test_gt (__float128 x, __float128 y)
{
return x > y;
}
int main()
{
__float128 a = 0.0;
__float128 b = 1.0;
int r;
r = test_lt (a, b);
if (r != ((double) a < (double) b))
abort();
r = test_gt (a, b);
if (r != ((double) a > (double) b))
abort();
return 0;
}
|