https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61929
Charles Greathouse <gcc at crg4 dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|4.9.1 |5.1.0
Known to fail| |5.1.0
--- Comment #6 from Charles Greathouse <gcc at crg4 dot com> ---
The RIES source still produces an ICE in gcc 5.1.0. New minimized testcase for
gcc-5.1:
signed short debug_A;
void generateICE(char *str) {
char d;
while(d = *str) {
if (d=='a') debug_A |= 1;
}
}