[llvm] [AMDGPU][True16][CodeGen] gisel true16 for ICMP (PR #128913)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 23:07:23 PDT 2025
================
@@ -1478,10 +1478,17 @@ bool AMDGPUInstructionSelector::selectG_ICMP_or_FCMP(MachineInstr &I) const {
if (Opcode == -1)
return false;
- MachineInstr *ICmp = BuildMI(*BB, &I, DL, TII.get(Opcode),
- I.getOperand(0).getReg())
- .add(I.getOperand(2))
- .add(I.getOperand(3));
+ MachineInstrBuilder ICmp =
----------------
arsenm wrote:
The point of moving to the pattern is to delete all of this code, not have a redundant path
https://github.com/llvm/llvm-project/pull/128913
More information about the llvm-commits
mailing list