summaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AlphaTargetMachine.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-11-13 01:45:23 +0000
committerChris Lattner <sabre@nondot.org>2005-11-13 01:45:23 +0000
commit773a959523dba0b6103d3455d69a136eab460ac8 (patch)
treeb0253e3afe510b1e56fb67c7afdcaee884eac6e6 /lib/Target/Alpha/AlphaTargetMachine.cpp
parent66cafb33bc606cf2c63b5a4b87caa88e352cbb44 (diff)
downloadllvm-773a959523dba0b6103d3455d69a136eab460ac8.tar.gz
llvm-773a959523dba0b6103d3455d69a136eab460ac8.tar.bz2
llvm-773a959523dba0b6103d3455d69a136eab460ac8.tar.xz
unbreak the build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24339 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaTargetMachine.cpp')
-rw-r--r--lib/Target/Alpha/AlphaTargetMachine.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Target/Alpha/AlphaTargetMachine.cpp b/lib/Target/Alpha/AlphaTargetMachine.cpp
index 3ee13002a3..fd9cbe59bc 100644
--- a/lib/Target/Alpha/AlphaTargetMachine.cpp
+++ b/lib/Target/Alpha/AlphaTargetMachine.cpp
@@ -120,10 +120,8 @@ bool AlphaTargetMachine::addPassesToEmitFile(PassManager &PM,
void AlphaJITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
- if (EnableAlphaLSR) {
- PM.add(createLoopStrengthReducePass());
- PM.add(createCFGSimplificationPass());
- }
+ PM.add(createLoopStrengthReducePass());
+ PM.add(createCFGSimplificationPass());
// FIXME: Implement efficient support for garbage collection intrinsics.
PM.add(createLowerGCPass());