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 optimization/13191] [64bit] Redundant sign extends


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-02-25 06:15 -------
Well I put the wrong dump in here before, here is the right one:
do_integer_bitwise (iterations, r)
{
  int s.3;
  int s;

<bb 0>:
  s = (int)iterations;
  r = s ^ r;
  s.3 = s ^ r;
  r = s ^ (r | s.3);
  s.3 = s.3 ^ r;
  r = s ^ (r | s.3);
  s.3 = s.3 ^ r;
  r = s ^ (r | s.3);
  return r | s.3 ^ r;

}

-- 


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


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