1 /* { dg-do compile } */ 2 /* { dg-require-effective-target vect_floatint_cvt } */ 3 4 unsigned int wlookup2[203]; 5 6 void SetSoundVariables(int x)7 SetSoundVariables (int x) 8 { 9 for (x = 1; x < 32; x++) 10 { 11 wlookup2[x] = (double) 16 / x; 12 } 13 } 14 15