X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=include%2Fllvm%2FCodeGen%2FSelectionDAGNodes.h;fp=include%2Fllvm%2FCodeGen%2FSelectionDAGNodes.h;h=972f0b9ed207bca13bad91c9e5a3448fd96cc9b5;hp=16cb4fe9f00c4aa5c9127410cedea0c409f0f548;hb=cc43180d94b1092175619ff7418680fbf3f330b0;hpb=b2700222ecba0d186f8db173dbbdba6f2330eab6 diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 16cb4fe9f00..972f0b9ed20 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -2053,7 +2053,7 @@ public: ISD::LoadExtType getExtensionType() const { return ISD::LoadExtType(SubclassData & 3); - } + } const SDValue &getSrc0() const { return getOperand(3); } static bool classof(const SDNode *N) { return N->getOpcode() == ISD::MLOAD; @@ -2120,7 +2120,7 @@ public: class MaskedGatherSDNode : public MaskedGatherScatterSDNode { public: friend class SelectionDAG; - MaskedGatherSDNode(unsigned Order, DebugLoc dl, ArrayRef Operands, + MaskedGatherSDNode(unsigned Order, DebugLoc dl, ArrayRef Operands, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO) : MaskedGatherScatterSDNode(ISD::MGATHER, Order, dl, Operands, VTs, MemVT, MMO) { @@ -2129,7 +2129,7 @@ public: assert(getMask().getValueType().getVectorNumElements() == getValueType(0).getVectorNumElements() && "Vector width mismatch between mask and data"); - assert(getMask().getValueType().getScalarType() == MVT::i1 && + assert(getMask().getValueType().getScalarType() == MVT::i1 && "Vector width mismatch between mask and data"); } @@ -2151,7 +2151,7 @@ public: assert(getMask().getValueType().getVectorNumElements() == getValue().getValueType().getVectorNumElements() && "Vector width mismatch between mask and data"); - assert(getMask().getValueType().getScalarType() == MVT::i1 && + assert(getMask().getValueType().getScalarType() == MVT::i1 && "Vector width mismatch between mask and data"); }