aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr29921.c
blob: 7689f54ce250b81ed328303851f541aef6e1bcf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* With -ffast-math, the latice value for t changes from -0.0 to 0.0 in this
   testcase.  */

/* { dg-do compile } */
/* { dg-options "-O2 -ffast-math" } */

double test (int param)
{
  double a = 0.0, b = -1.0, t;
  int i;

  for (i = 0; i < 100; i++)
    {
      t = a * b;
      if (param)
	b = 2.0;
    }

  return t;
}