[Bug tree-optimization/31034] [4.3 Regression] ICE in set_value_range, at tree-vrp.c:267
rguenth at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Sun Mar 4 12:54:00 GMT 2007
------- 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
More information about the Gcc-bugs
mailing list