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/15350] [tree-ssa] Convert if ((1 << a) & 1) into if (a == 0).


------- Additional Comments From kazu at cs dot umass dot edu  2004-05-15 11:39 -------
As of today, the last tree-ssa form of foo() looks like:

foo (a)
{
  int b;
  _Bool T.1;
  int T.0;

<bb 0>:
  b_2 = 1 << a_1;
  T.0_3 = b_2 & 1;
  if (T.0_3 != 0) goto <L0>; else goto <L1>;

<L0>:;
  bar () [tail call];

<L1>:;
  return;

}

-- 


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


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