aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/SparcV9/SparcV9TargetMachine.cpp
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2004-12-16 23:07:36 +0000
committerTanya Lattner <tonic@nondot.org>2004-12-16 23:07:36 +0000
commit9fde12b747e2338951d42e11f27df523f7dd98f2 (patch)
tree8493958f85530cd2eee69fc6ce466157045539c7 /lib/Target/SparcV9/SparcV9TargetMachine.cpp
parentf1131b35af8ff6d4cf7f1b7b70f61251e0835e16 (diff)
Removed LICM and GCSE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19003 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/SparcV9TargetMachine.cpp')
-rw-r--r--lib/Target/SparcV9/SparcV9TargetMachine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp
index 60d4da2898..9a4ab4bbeb 100644
--- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp
+++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp
@@ -179,9 +179,9 @@ SparcV9TargetMachine::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out
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.