aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetLowering.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-09 22:27:04 +0000
committerChris Lattner <sabre@nondot.org>2007-04-09 22:27:04 +0000
commitb445d0cbb9b299ba8ec7be2494e35c501b6d3a93 (patch)
treee35497f8cd721b96c26fc55677bda07174973ea3 /include/llvm/Target/TargetLowering.h
parent17cba6d2326f1f81098334def5f4f99d867e3ce4 (diff)
downloadexternal_llvm-b445d0cbb9b299ba8ec7be2494e35c501b6d3a93.zip
external_llvm-b445d0cbb9b299ba8ec7be2494e35c501b6d3a93.tar.gz
external_llvm-b445d0cbb9b299ba8ec7be2494e35c501b6d3a93.tar.bz2
remove some dead target hooks, subsumed by isLegalAddressingMode
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35840 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetLowering.h')
-rw-r--r--include/llvm/Target/TargetLowering.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 97b12b4..6bf72a3 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -893,17 +893,6 @@ public:
/// scale of the target addressing mode for load / store of the given type.
virtual bool isLegalAddressScale(int64_t S, const Type *Ty) const;
- /// isLegalAddressScaleAndImm - Return true if S works for IsLegalAddressScale
- /// and V works for isLegalAddressImmediate _and_ both can be applied
- /// simultaneously to the same instruction.
- virtual bool isLegalAddressScaleAndImm(int64_t S, int64_t V,
- const Type* Ty) const;
- /// isLegalAddressScaleAndImm - Return true if S works for IsLegalAddressScale
- /// and GV works for isLegalAddressImmediate _and_ both can be applied
- /// simultaneously to the same instruction.
- virtual bool isLegalAddressScaleAndImm(int64_t S, GlobalValue *GV,
- const Type* Ty) const;
-
//===--------------------------------------------------------------------===//
// Div utility functions
//