This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug debug/49544] New: [4.7 Regression] ICE in new_elt_loc_list
- 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, 27 Jun 2011 17:04:52 +0000
- Subject: [Bug debug/49544] New: [4.7 Regression] ICE in new_elt_loc_list
- Auto-submitted: auto-generated
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49544
Summary: [4.7 Regression] ICE in new_elt_loc_list
Product: gcc
Version: 4.7.0
URL: https://bugzilla.redhat.com/716837
Status: UNCONFIRMED
Keywords: ice-on-valid-code
Severity: normal
Priority: P3
Component: debug
AssignedTo: jakub@gcc.gnu.org
ReportedBy: jakub@gcc.gnu.org
Target: s390x-linux
int baz (int, int, void *);
static inline __attribute__ ((always_inline)) long
foo (int x, int y, void *z)
{
if (y < 0)
return baz (x, y, z);
return 0;
}
long
bar (long x, long y, long z)
{
return foo (x, y, (void *) z);
}
ICEs on the trunk on s390x-linux at -g -O2. The bug has been introduced by my
http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=174508
patch.