This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/64663] ICE at -O1 and above with -g enabled on x86_64-linux-gnu
- From: "jakub at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Mon, 19 Jan 2015 10:04:16 +0000
- Subject: [Bug c/64663] ICE at -O1 and above with -g enabled on x86_64-linux-gnu
- Auto-submitted: auto-generated
- References: <bug-64663-4 at http dot gcc dot gnu dot org/bugzilla/>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64663
--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase -O2 -g:
void
foo (void)
{
int a[9];
a[-8] = 0;
}
surprisingly doesn't ICE with -7 or -9 instead of -8, ICEs again with -16.
Will have a look.