[Bug tree-optimization/15357] [tree-ssa] combing if statements

2013-11-09 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15357 Andrew Pinski changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug tree-optimization/15357] [tree-ssa] combing if statements

2012-01-21 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15357 Andrew Pinski changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|unassigned at

[Bug tree-optimization/15357] [tree-ssa] combing if statements

2007-06-12 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2007-06-12 12:10 --- The new if-combining pass can be told to make the transformation suggested in the description. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added --

[Bug tree-optimization/15357] [tree-ssa] combing if statements

2007-01-26 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2007-01-26 13:44 --- Another thing we should be able to do is combine bit-tests like if (a & (1 << b)) if (a & (1 << c)) ... to a single test if (a & ((1 << b) | (1 << c)) == ((1 << b) | (1 << c))) ... -- http://gcc.

[Bug tree-optimization/15357] [tree-ssa] combing if statements

2005-05-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-08 18:17 --- I lost the code which I was using to do this so I am no longer working on this. -- What|Removed |Added ---