aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr37969.c
blob: cbb6f0598794377039deb99fa85aa142cf63acfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-funswitch-loops" } */

void foo(double);
void CreateDefaultTexture(double mnMinimum, double mnMaximum,
			  unsigned short nCreateWhat)
{
  double d = 0.0;
  for(;;)
    {
      if(nCreateWhat & (0x0001)
	 && mnMinimum != 0.0)
	d = mnMinimum;
      if(nCreateWhat & (0x0002)
	 && mnMaximum != 0.0)
	d = mnMaximum;
      foo(d);
    }
}