aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr116891.c
blob: 446e5ec5a4aaf8551472910b3cc817c9134f0092 (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
/* PR middle-end/116891 */
/* { dg-do run } */
/* { dg-require-effective-target fenv } */
/* { dg-require-effective-target hard_float } */
/* { dg-require-effective-target c99_runtime } */
/* { dg-options "-O2 -frounding-math" } */

#include <fenv.h>

__attribute__((noipa)) double
foo (double x, double y, double z)
{
  return -__builtin_fma (-x, y, -z);
}

__attribute__((noipa)) double
bar (double x, double y, double z)
{
  return -__builtin_fma (-x, y, z);
}

__attribute__((noipa)) double
baz (double x, double y, double z)
{
  return -__builtin_fma (x, y, -z);
}

__attribute__((noipa)) double
qux (double x, double y, double z)
{
  return -__builtin_fma (x, y, z);
}

int
main ()
{
#if defined (FE_DOWNWARD) && __DBL_MANT_DIG__ == 53 && __DBL_MAX_EXP__ == 1024
  fesetround (FE_DOWNWARD);
  double a = foo (-0x1.p256, 0x1.p256, 0x1.p-256);
  if (a != -__builtin_nextafter (0x1p256 * 0x1p256, 0.))
    __builtin_abort ();
  if (a != bar (-0x1.p256, 0x1.p256, -0x1.p-256)
      || a != baz (0x1.p256, 0x1.p256, 0x1.p-256)
      || a != qux (0x1.p256, 0x1.p256, -0x1.p-256))
    __builtin_abort ();
#endif
}