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 target/56847] '-fpie' triggers - internal compiler error: in gen_add2_insn, at optabs.c:4705


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

--- Comment #3 from Marek Polacek <mpolacek at gcc dot gnu.org> 2013-04-05 05:28:21 UTC ---
Slightly reduced.
struct S { long int a, b; };
extern struct S e;

void
foo (void)
{
  static __thread struct S s = { 0, 0 };
  s = e;
}


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