This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/37913] [4.4 Regression] internal compiler error: Segmentation fault
- From: "ubizjak at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 25 Oct 2008 10:14:17 -0000
- Subject: [Bug middle-end/37913] [4.4 Regression] internal compiler error: Segmentation fault
- References: <bug-37913-7606@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #3 from ubizjak at gmail dot com 2008-10-25 10:14 -------
Minimized testcase:
--cut here--
void Perl_croak (void) __attribute__ ((noreturn));
static int __attribute__ ((noreturn))
not_here (void)
{
Perl_croak ();
}
void XS_IO__Handle_setvbuf (void)
{
int i = not_here ();
}
--cut here--
gcc -O2 pr37913.c:
pr37913.c: In function ?XS_IO__Handle_setvbuf?:
pr37913.c:12: internal compiler error: Segmentation fault
Please submit a full bug report,
<etc>
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37913