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 optimization/14705] [tree-ssa] more alias analysis needed!?


------- Additional Comments From kazu at cs dot umass dot edu  2004-03-24 17:32 -------
Another similar testcase reduced from web.c.

extern void abort (void) __attribute__ ((__noreturn__));

struct s {
  int a;
  int b;
};

void
bar (struct s *p)
{
  if (p->a)
    abort ();

  p->b = 0;

  if (p->a)
    abort ();
}


-- 


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


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