diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-09 22:27:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-09 22:27:04 +0000 |
commit | 39f65335d5e4a8d2fc7cc3cd364984e864b5348a (patch) | |
tree | 7f45d97cffa39889d1d336dc8405d2d256b09c23 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 83efbc84f755c4e6f06ac4d00c9e7c317ebce6b0 (diff) | |
download | bcm5719-llvm-39f65335d5e4a8d2fc7cc3cd364984e864b5348a.tar.gz bcm5719-llvm-39f65335d5e4a8d2fc7cc3cd364984e864b5348a.zip |
remove some dead target hooks, subsumed by isLegalAddressingMode
llvm-svn: 35840
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 195b1504a57..51d8187aa17 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -1993,23 +1993,6 @@ bool TargetLowering::isLegalAddressScale(int64_t S, const Type *Ty) const { return false; } -/// isLegalAddressScaleAndImm - Return true if S works for IsLegalAddressScale -/// and V works for isLegalAddressImmediate _and_ both can be applied -/// simultaneously to the same instruction. -bool TargetLowering::isLegalAddressScaleAndImm(int64_t S, int64_t V, - const Type* Ty) const { - return false; -} - -/// isLegalAddressScaleAndImm - Return true if S works for IsLegalAddressScale -/// and GV works for isLegalAddressImmediate _and_ both can be applied -/// simultaneously to the same instruction. -bool TargetLowering::isLegalAddressScaleAndImm(int64_t S, GlobalValue *GV, - const Type* Ty) const { - - return false; -} - // Magic for divide replacement struct ms { |