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

Vikram Adve vadve at cs.uiuc.edu
Sat Oct 12 19:35:01 PDT 2002


Changes in directory llvm/lib/Target:

TargetMachine.cpp updated: 1.11 -> 1.12

---
Log message:

Run LICM before GCSE!


---
Diffs of the changes:

Index: llvm/lib/Target/TargetMachine.cpp
diff -u llvm/lib/Target/TargetMachine.cpp:1.11 llvm/lib/Target/TargetMachine.cpp:1.12
--- llvm/lib/Target/TargetMachine.cpp:1.11	Mon Sep 23 07:55:50 2002
+++ llvm/lib/Target/TargetMachine.cpp	Sat Oct 12 19:34:10 2002
@@ -130,8 +130,8 @@
     {
       PM.add(createPreSelectionPass(*this));
       /* PM.add(createReassociatePass()); */
-      PM.add(createGCSEPass());
       PM.add(createLICMPass());
+      PM.add(createGCSEPass());
     }
 
   PM.add(createInstructionSelectionPass(*this));





More information about the llvm-commits mailing list