[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Nov 12 17:45:35 PST 2005



Changes in directory llvm/lib/Target/Alpha:

AlphaTargetMachine.cpp updated: 1.17 -> 1.18
---
Log message:

unbreak the build


---
Diffs of the changes:  (+2 -4)

 AlphaTargetMachine.cpp |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)


Index: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp
diff -u llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.17 llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.18
--- llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.17	Sat Nov 12 13:21:08 2005
+++ llvm/lib/Target/Alpha/AlphaTargetMachine.cpp	Sat Nov 12 19:45:23 2005
@@ -120,10 +120,8 @@
 
 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());






More information about the llvm-commits mailing list