[PATCH] D50402: [SelectionDAG][X86] Reorder the operands the MaskedStoreSDNode to put the value first.

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 12 18:24:38 PDT 2018


craig.topper added inline comments.


================
Comment at: include/llvm/CodeGen/SelectionDAGNodes.h:2150
+  const SDValue &getBasePtr() const { return getOperand(1); }
+  const SDValue &getMask() const    { return getOperand(2); }
   const SDValue &getPassThru() const { return getOperand(3); }
----------------
RKSimon wrote:
> Are these going to cause compiler warnings wrt the MaskedLoadStoreSDNode equivalents?
I don't think so.


https://reviews.llvm.org/D50402





More information about the llvm-commits mailing list