[Bug tree-optimization/35306] Missing expression simplication for conditional OR

2021-06-02 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=35306 Andrew Pinski changed: What|Removed |Added Resolution|--- |FIXED Target Milestone|---

[Bug tree-optimization/35306] Missing expression simplication for conditional OR

2012-03-03 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35306 --- Comment #3 from Andrew Pinski 2012-03-04 00:11:40 UTC --- I have a patch which handles: int bla(int a, int x, int y) { return (a & x)!=0 | (a & y)!=0; } But it does not handle the original case though. That is mostly because