This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug middle-end/37026] New: GCC ICE in tree_to_gimple_tuple


I am seeing this error when compiling linux kernel 2.6.25 with gcc build from
latest 4_3 branch tip.

Here is test case

====

struct a {
 long a1;
 long a2;
};

struct b {
  struct a b1;
  struct a b2;
};
void bar (struct b *c)
{
 c->b1 = c->b2 = ((struct a) { foo(), 0 });
}

====

arm-none-linux-gnueabi-gcc test.c 



test.c: In function â??barâ??:
test.c:12: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.


-- 
           Summary: GCC ICE in tree_to_gimple_tuple
           Product: gcc
           Version: 4.3.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: raj dot khem at gmail dot com
 GCC build triplet: x86_64-linux-gnu
  GCC host triplet: x86_64-linux-gnu
GCC target triplet: arm-none-linux-gnueabi


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37026


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]