[llvm-commits] CVS: llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp
Tanya Brethour
tbrethou at cs.uiuc.edu
Thu Dec 16 15:07:53 PST 2004
Changes in directory llvm/lib/Target/SparcV9:
SparcV9TargetMachine.cpp updated: 1.129 -> 1.130
---
Log message:
Removed LICM and GCSE.
---
Diffs of the changes: (+3 -3)
Index: llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp
diff -u llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp:1.129 llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp:1.130
--- llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp:1.129 Sun Dec 12 11:40:28 2004
+++ llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp Thu Dec 16 17:07:36 2004
@@ -179,9 +179,9 @@
PM.add(createLowerSelectPass());
// Run basic LLVM dataflow optimizations, to clean up after pre-selection.
- PM.add(createReassociatePass());
- PM.add(createLICMPass());
- PM.add(createGCSEPass());
+ //PM.add(createReassociatePass());
+ //PM.add(createLICMPass());
+ //PM.add(createGCSEPass());
// If the user's trying to read the generated code, they'll need to see the
// transformed input.
More information about the llvm-commits
mailing list