[PATCH] D50402: [SelectionDAG][X86] Reorder the operands the MaskedStoreSDNode to put the value first.
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 12 06:44:25 PDT 2018
RKSimon 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); }
----------------
Are these going to cause compiler warnings wrt the MaskedLoadStoreSDNode equivalents?
https://reviews.llvm.org/D50402
More information about the llvm-commits
mailing list