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 tree-optimization/26179] [4.2 Regression] ICE while compiling mozilla in tree-ssa-pre.c



------- Comment #3 from pinskia at gcc dot gnu dot org  2006-02-08 23:23 -------
Reduced testcase for the RETURN_DECL issue (I still have to figure out if this
is the same issue):
struct a
{
  int i;
};
void h(struct a&);
void l(void);

struct a g(void)
{
  struct a fl;
  h(fl);
  if (fl.i)
    l();
  fl.i+=2;
  return fl;
}


-- 


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


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