diff options
author | Chris Lattner <sabre@nondot.org> | 2005-11-13 01:45:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-11-13 01:45:23 +0000 |
commit | 773a959523dba0b6103d3455d69a136eab460ac8 (patch) | |
tree | b0253e3afe510b1e56fb67c7afdcaee884eac6e6 /lib/Target/Alpha/AlphaTargetMachine.cpp | |
parent | 66cafb33bc606cf2c63b5a4b87caa88e352cbb44 (diff) |
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.cpp | 6 |
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()); |