diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-09 23:34:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-09 23:34:08 +0000 |
commit | 35f0417ec10bf0c0e3f0a7fc7d760cfb786df8d1 (patch) | |
tree | 1781d555a9283ee614cba607aab019c8f6225abf /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | d44e24c8967f3c7fe4831bb12272468aad5e4032 (diff) | |
download | bcm5719-llvm-35f0417ec10bf0c0e3f0a7fc7d760cfb786df8d1.tar.gz bcm5719-llvm-35f0417ec10bf0c0e3f0a7fc7d760cfb786df8d1.zip |
remove dead target hooks.
llvm-svn: 35847
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 51d8187aa17..f1cd9a58a2f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -1974,25 +1974,6 @@ bool TargetLowering::isLegalAddressingMode(const AddrMode &AM, return true; } -/// isLegalAddressImmediate - Return true if the integer value can be used as -/// the offset of the target addressing mode for load / store of the given -/// type. -bool TargetLowering::isLegalAddressImmediate(int64_t V, const Type *Ty) const { - return false; -} - -/// isLegalAddressImmediate - Return true if the GlobalValue can be used as -/// the offset of the target addressing mode. -bool TargetLowering::isLegalAddressImmediate(GlobalValue *GV) const { - return false; -} - -/// isLegalAddressScale - Return true if the integer value can be used as the -/// scale of the target addressing mode for load / store of the given type. -bool TargetLowering::isLegalAddressScale(int64_t S, const Type *Ty) const { - return false; -} - // Magic for divide replacement struct ms { |