Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20000427-1.c
blobdc51419cf01284add0c341f5577d961bc8148b2f
1 int lwidth;
2 int lheight;
3 void ConvertFor3dDriver (int requirePO2, int maxAspect)
4 {
5 int oldw = lwidth, oldh = lheight;
7 lheight = FindNearestPowerOf2 (lheight);
8 while (lwidth/lheight > maxAspect) lheight += lheight;
9 }