1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// { dg-do compile } // { dg-options "-O2" } void lspf2lpc(); void interpolate_lpc(int subframe_num) { float weight = 0.25 * subframe_num + 1; if (weight) lspf2lpc(); } void qcelp_decode_frame() { int i; for (;; i++) interpolate_lpc(i); }