-
- Downloads
[PR target/113001] Fix incorrect operand swapping in conditional move
This bug totally fell off my radar. Sorry about that. We have some special casing the conditional move expander to simplify a conditional move when comparing a register against zero and that same register is one of the arms. Specifically a (eq (reg) (const_int 0)) where reg is also the true arm or (ne (reg) (const_int 0)) where reg is the false arm need not use the fully generalized conditional move, thus saving an instruction for those cases. In the NE case we swapped the operands, but didn't swap the condition, which led to the ICE due to an unrecognized pattern. THe backend actually has distinct patterns for those two cases. So swapping the operands is neither needed nor advisable. Regression tested on rv64gc and verified the new tests pass. Pushing to the trunk. PR target/113001 PR target/112871 gcc/ * config/riscv/riscv.cc (expand_conditional_move): Do not swap operands when the comparison operand is the same as the false arm for a NE test. gcc/testsuite * gcc.target/riscv/zicond-ice-3.c: New test. * gcc.target/riscv/zicond-ice-4.c: New test.
Showing
- gcc/config/riscv/riscv.cc 0 additions, 2 deletionsgcc/config/riscv/riscv.cc
- gcc/testsuite/gcc.target/riscv/zicond-ice-3.c 15 additions, 0 deletionsgcc/testsuite/gcc.target/riscv/zicond-ice-3.c
- gcc/testsuite/gcc.target/riscv/zicond-ice-4.c 22 additions, 0 deletionsgcc/testsuite/gcc.target/riscv/zicond-ice-4.c
Loading
Please register or sign in to comment