diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-26 22:59:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-26 22:59:59 +0000 |
commit | 2ba1c06d485949d01054cada0fef1fa5be27608a (patch) | |
tree | 41477528d4bdfdcba07ab4a1586440789e3801f9 /lib/Target/CellSPU | |
parent | 998182b3802d2be8d081ca484b5d4fd5e1188950 (diff) | |
download | external_llvm-2ba1c06d485949d01054cada0fef1fa5be27608a.zip external_llvm-2ba1c06d485949d01054cada0fef1fa5be27608a.tar.gz external_llvm-2ba1c06d485949d01054cada0fef1fa5be27608a.tar.bz2 |
no need to implement this method and just have it call
the default impl.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50311 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CellSPU')
-rw-r--r-- | lib/Target/CellSPU/SPUISelLowering.cpp | 10 | ||||
-rw-r--r-- | lib/Target/CellSPU/SPUISelLowering.h | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/lib/Target/CellSPU/SPUISelLowering.cpp b/lib/Target/CellSPU/SPUISelLowering.cpp index 1cb6918..ca5638c 100644 --- a/lib/Target/CellSPU/SPUISelLowering.cpp +++ b/lib/Target/CellSPU/SPUISelLowering.cpp @@ -2895,16 +2895,6 @@ SPUTargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op, } } -// LowerAsmOperandForConstraint -void -SPUTargetLowering::LowerAsmOperandForConstraint(SDOperand Op, - char ConstraintLetter, - std::vector<SDOperand> &Ops, - SelectionDAG &DAG) { - // Default, for the time being, to the base class handler - TargetLowering::LowerAsmOperandForConstraint(Op, ConstraintLetter, Ops, DAG); -} - /// isLegalAddressImmediate - Return true if the integer value can be used /// as the offset of the target addressing mode. bool SPUTargetLowering::isLegalAddressImmediate(int64_t V, const Type *Ty) const { diff --git a/lib/Target/CellSPU/SPUISelLowering.h b/lib/Target/CellSPU/SPUISelLowering.h index d5bfac4..4e9f474 100644 --- a/lib/Target/CellSPU/SPUISelLowering.h +++ b/lib/Target/CellSPU/SPUISelLowering.h @@ -125,10 +125,6 @@ namespace llvm { getRegForInlineAsmConstraint(const std::string &Constraint, MVT::ValueType VT) const; - void LowerAsmOperandForConstraint(SDOperand Op, char ConstraintLetter, - std::vector<SDOperand> &Ops, - SelectionDAG &DAG); - /// isLegalAddressImmediate - Return true if the integer value can be used /// as the offset of the target addressing mode. virtual bool isLegalAddressImmediate(int64_t V, const Type *Ty) const; |