aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr32268.c
blob: 66ed5061947faf487f57cf09c790188025232591 (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* *-*-gnu* } } */
/* { 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;
}