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/17966] a quadratic behavior in thread_jumps


------- Additional Comments From kazu at cs dot umass dot edu  2004-10-13 12:35 -------
Andrew, I did it in the hard way. :-)

void
foo (int a)
{
  int b;

  goto b1;

 b4: return;
 b3: if (a) { b = a; return; } else goto b4;
 b2: if (a) { b = a; return; } else goto b3;
 b1: if (a) { b = a; return; } else goto b2;

}



-- 


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


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