This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/23671] [4.1 Regression] ICE in fixup_eh_region_note, at reload1.c:3808
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 1 Sep 2005 15:57:41 -0000
- Subject: [Bug middle-end/23671] [4.1 Regression] ICE in fixup_eh_region_note, at reload1.c:3808
- References: <20050901022220.23671.danglin@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-01 15:57 -------
Compile the following at -O0 -fnon-call-exceptions:
float run (int t) {
int stack[4];
int *sp = stack+1;
try {
return ( *(--sp));
}
catch (int *ex) { }
return 0.0;
}
--
What |Removed |Added
----------------------------------------------------------------------------
Status|WAITING |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2005-09-01 15:57:40
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23671