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

Vikram Adve vadve at psmith.cs.uiuc.edu
Mon Sep 23 07:56:01 PDT 2002


Changes in directory llvm/lib/Target:

TargetMachine.cpp updated: 1.10 -> 1.11

---
Log message:

Disable reassociation pass in LLC until it is fixed.


---
Diffs of the changes:

Index: llvm/lib/Target/TargetMachine.cpp
diff -u llvm/lib/Target/TargetMachine.cpp:1.10 llvm/lib/Target/TargetMachine.cpp:1.11
--- llvm/lib/Target/TargetMachine.cpp:1.10	Sat Sep 21 00:01:21 2002
+++ llvm/lib/Target/TargetMachine.cpp	Mon Sep 23 07:55:50 2002
@@ -129,7 +129,7 @@
   if (!DisablePreSelect)
     {
       PM.add(createPreSelectionPass(*this));
-      PM.add(createReassociatePass());
+      /* PM.add(createReassociatePass()); */
       PM.add(createGCSEPass());
       PM.add(createLICMPass());
     }





More information about the llvm-commits mailing list