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:30 -------
Reduced to:

struct s {
  int c;
  struct s *next;
};

int global;

extern void bar (void);

void
foo (struct s *p)
{
  if (p->c != 0)
    return;

  global++;
  if (p->c == 0)
    bar ();
}

-- 


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]