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;
}