This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/52472] ICE: in convert_debug_memory_address, at cfgexpand.c:2491
- From: "gjl at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 28 Mar 2012 15:27:42 +0000
- Subject: [Bug middle-end/52472] ICE: in convert_debug_memory_address, at cfgexpand.c:2491
- Auto-submitted: auto-generated
- References: <bug-52472-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52472
Georg-Johann Lay <gjl at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|ice-on-invalid-code |ice-on-valid-code
Last reconfirmed|2012-03-03 00:00:00 |2012-03-28 0:00
Host|mingw32 |
--- Comment #7 from Georg-Johann Lay <gjl at gcc dot gnu.org> 2012-03-28 15:27:42 UTC ---
Reduced test-case: Compile with:
$ avr-gcc ice-memx.c -S -g -Os
extern const __memx unsigned data[][10];
unsigned long ice (void)
{
unsigned long addr32;
return addr32 = (unsigned long) data;
}