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/23744] VRP does not merge discontinuous ranges of PHIs



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-03-05 17:28 -------
Here is a new testcase so that we don't thread the jump as we currently do:
int g(int i, int j)
{
  int t = 0;
  int i1;
  if (i == j)
    t = 3;
  for(i1=0;i1<10000;i1++) h();
  if (t != 5)
    return 0;
  else
    return 1;
}


-- 


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


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