aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/pr30120.c
blob: 22fd843a79f8a695823d73f274d94e4bd635cad0 (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
/* { dg-do run } */
/* { dg-options "-O2 -ffast-math" } */

extern void abort (void);

static void
foo (double a, double weight, const double *ring, double *phase)
{
  *phase = *ring * weight;
}

void
foo2 (void)
{
  foo (0, 1, (double *) 0, (double *) 0);
}

int
main (void)
{
  double t1 = 1, c1;
  foo (0, 1, &t1, &c1);
  if (c1 < 0.5)
    abort();

  return 0;
}