[llvm] [AMDGPU][True16][CodeGen] gisel true16 for G_Merge and ICMP (PR #128913)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 23:22:26 PST 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:
I don't remember why we manually select these. Should make another attempt to move this to use the selection patterns
https://github.com/llvm/llvm-project/pull/128913
More information about the llvm-commits
mailing list