1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* { dg-options "-fmove-loop-invariants" } */ static int mdct_win[8]; int x; int decode_init (double d) { int j; for (j = 4; j; j--) { d *= 0.5; mdct_win[j] = (d * 3); } }