[llvm] [NVPTX] Remove redundant addressing mode instrs (PR #128044)

Alex MacLean via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 20 12:18:07 PST 2025


================
@@ -1344,8 +1264,10 @@ bool NVPTXDAGToDAGISel::tryLDGLDU(SDNode *N) {
       return false;
     SDValue Ops[] = { Addr, Chain };
     LD = CurDAG->getMachineNode(*Opcode, DL, InstVTList, Ops);
-  } else if (TM.is64Bit() ? SelectADDRri64(Op1.getNode(), Op1, Base, Offset)
-                          : SelectADDRri(Op1.getNode(), Op1, Base, Offset)) {
+  } else {
+    TM.is64Bit() ? SelectADDRri64(Op1.getNode(), Op1, Base, Offset)
+                 : SelectADDRri(Op1.getNode(), Op1, Base, Offset);
----------------
AlexMaclean wrote:

Sounds good, I've sunk these calls into the following `if`s.

https://github.com/llvm/llvm-project/pull/128044


More information about the llvm-commits mailing list