[Bug rtl-optimization/64713] Missed ccmp optimization

2023-12-12 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64713 Andrew Pinski changed: What|Removed |Added Resolution|--- |FIXED Status|UNCONFIRMED

[Bug rtl-optimization/64713] Missed ccmp optimization

2016-03-19 Thread ramana at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64713 Ramana Radhakrishnan changed: What|Removed |Added CC||ramana at gcc dot gnu.org ---

[Bug rtl-optimization/64713] Missed ccmp optimization

2015-12-23 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64713 Bug 64713 depends on bug 64993, which changed state. Bug 64993 Summary: Missed ccmp optimization with simple code https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64993 What|Removed |Added

[Bug rtl-optimization/64713] Missed ccmp optimization

2015-02-09 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64713 Andrew Pinski pinskia at gcc dot gnu.org changed: What|Removed |Added Target|aarch64-linux

[Bug rtl-optimization/64713] Missed ccmp optimization

2015-01-23 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64713 --- Comment #2 from Andrew Pinski pinskia at gcc dot gnu.org --- Here is a testcase which shows one of the issues with removing the optimization inside expand: int foo_c (int a, int b) { if (a 9 b 34) return 4; else return 26; }

[Bug rtl-optimization/64713] Missed ccmp optimization

2015-01-23 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64713 --- Comment #3 from Andrew Pinski pinskia at gcc dot gnu.org --- It is failing this check: /* Make sure that the value that is to be substituted for the register does not use any registers whose values alter in between. However, If

[Bug rtl-optimization/64713] Missed ccmp optimization

2015-01-21 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64713 --- Comment #1 from Andrew Pinski pinskia at gcc dot gnu.org --- I have this too even before the recent patch.