view gcc/testsuite/gcc.dg/torture/pr37969.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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);
    }
}