------- Comment #4 from rguenth at gcc dot gnu dot org 2007-03-04 12:54 ------- More useless stuff removed:
static inline int mod (int a, int n) { return a >= n ? a % n : a; } void dpara(int); void opticurve (int m) { int i; for (i = 0; i < m; i++) { dpara(mod (i - 1, m)); } } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31034