diff options
author | Dale Johannesen <dalej@apple.com> | 2007-03-21 21:51:52 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-03-21 21:51:52 +0000 |
commit | 0c6bb5eab785e22750d8d922bb58f6d536035c8b (patch) | |
tree | e856ae9e7332fb2028ec99225dbfacbf338f63ba /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 4ad4bcdc2db2947f0438bbfe9dc4a7e3b36e96d7 (diff) | |
download | bcm5719-llvm-0c6bb5eab785e22750d8d922bb58f6d536035c8b.tar.gz bcm5719-llvm-0c6bb5eab785e22750d8d922bb58f6d536035c8b.zip |
repair x86 performance, dejagnu problems from previous change
llvm-svn: 35245
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 83bca7570f0..718d9833892 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -1969,8 +1969,8 @@ bool TargetLowering::isLegalAddressScaleAndImm(int64_t S, int64_t V, /// 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 { +bool TargetLowering::isLegalAddressScaleAndImm(int64_t S, GlobalValue *GV, + const Type* Ty) const { return false; } |