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/17671] PHI-OPT is not smart enough


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-09-28 22:42 -------
Here is another example (which shows up in PR8361) (plus after my patch we actually optimize it better 
than before):
_Bool f1(_Bool a, _Bool b)
{
  if (a)
   {
     if (b)
      return 1;
     else
      return 0;
   }
  return 0;
}

-- 


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


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