aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr47473.c
blob: 92f2b872e8c661a89f8c9a1d6fd0f2d98fed8ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR c/47473 */
/* { dg-do run } */
/* { dg-options "-std=c99" } */

int
main (void)
{
  long double _Complex w = 0.2L - 0.3iL;
  w = w * (0.3L - (0.0F + 1.0iF) * 0.9L);
  if (__builtin_fabsl (__real__ w + 0.21L) > 0.001L
      || __builtin_fabsl (__imag__ w + 0.27L) > 0.001L)
    __builtin_abort ();
  return 0;
}