[Bug target/111078] csneg is not used for (cset) * 2 - 1

2024-07-10 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111078 Andrew Pinski changed: What|Removed |Added Assignee|pzheng at gcc dot gnu.org |pinskia at gcc dot gnu.org ---

[Bug target/111078] csneg is not used for (cset) * 2 - 1

2023-11-17 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111078 Andrew Pinski changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |pinskia at gcc dot gnu.org

[Bug target/111078] csneg is not used for (cset) * 2 - 1

2023-08-19 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111078 --- Comment #1 from Andrew Pinski --- Another form: ``` int f1(int a, int b) { int t = a != b; return (-t)|1; } ```