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/21289] A numeric range is spoiled by a symblic one in VRP


------- Additional Comments From kazu at cs dot umass dot edu  2005-05-14 19:40 -------
Another case of a numeric value range spoiled by a symbolic one:

int
foo (int a, int b)
{
  if (a == 0)
    return 0;

  if (a == b)
    if (a == 0)
      return 123;

  return 456;
}

Reduced from c-common.c.


-- 


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


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