[llvm] [NVPTX] Remove `NVPTX::IMAD` opcode, and rely on intruction selection only (PR #121724)

via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 6 22:44:23 PST 2025


================
@@ -7217,8 +7217,7 @@ void SelectionDAG::canonicalizeCommutativeBinop(unsigned Opcode, SDValue &N1,
 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
                               SDValue N1, SDValue N2, const SDNodeFlags Flags) {
   assert(N1.getOpcode() != ISD::DELETED_NODE &&
-         N2.getOpcode() != ISD::DELETED_NODE &&
-         "Operand is DELETED_NODE!");
+         N2.getOpcode() != ISD::DELETED_NODE && "Operand is DELETED_NODE!");
----------------
peterbell10 wrote:

Okay, reverted the clang-format changes.

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


More information about the llvm-commits mailing list