[Bug rtl-optimization/69161] [6 Regression] ICE in simplify_const_unary_operation, at simplify-rtx.c:1633
ktkachov at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Fri Jan 8 13:42:00 GMT 2016
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69161
--- Comment #10 from ktkachov at gcc dot gnu.org ---
Sorry. Of course you meant "int *". That still ICEs:
char a;
int b, c, d, e;
void
foo (void)
{
int f;
for (f = 0; f <= 4; f++)
{
for (d = 0; d < 20; d++)
{
int *g = &c;
b &= (0 != g) > e;
}
e &= a;
}
}
More information about the Gcc-bugs
mailing list