diff options
Diffstat (limited to 'lib/CodeGen/SelectionDAG/LegalizeTypes.h')
-rw-r--r-- | lib/CodeGen/SelectionDAG/LegalizeTypes.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeTypes.h b/lib/CodeGen/SelectionDAG/LegalizeTypes.h index 09ccfe9938..ba8f106935 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeTypes.h +++ b/lib/CodeGen/SelectionDAG/LegalizeTypes.h @@ -169,14 +169,18 @@ private: void ExpungeNode(SDOperand N); // Common routines. - SDOperand BitConvertToInteger(SDOperand Op); SDOperand CreateStackStoreLoad(SDOperand Op, MVT DestVT); + SDOperand MakeLibCall(RTLIB::Libcall LC, MVT RetVT, + const SDOperand *Ops, unsigned NumOps, bool isSigned); + + SDOperand BitConvertToInteger(SDOperand Op); SDOperand JoinIntegers(SDOperand Lo, SDOperand Hi); void SplitInteger(SDOperand Op, SDOperand &Lo, SDOperand &Hi); void SplitInteger(SDOperand Op, MVT LoVT, MVT HiVT, SDOperand &Lo, SDOperand &Hi); - SDOperand MakeLibCall(RTLIB::Libcall LC, MVT RetVT, - const SDOperand *Ops, unsigned NumOps, bool isSigned); + + SDOperand GetVectorElementPointer(SDOperand VecPtr, MVT EltVT, + SDOperand Index); //===--------------------------------------------------------------------===// // Promotion Support: LegalizeTypesPromote.cpp |