summaryrefslogtreecommitdiffstats
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
commit08e19bb41262b14d9428159803287bfeee641cfa (patch)
tree186026a583c29878c0469bc167ebb925626486a8
parentc3a7bd7d0cd5a69079043d00f9044c75865778e1 (diff)
downloadbcm5719-llvm-08e19bb41262b14d9428159803287bfeee641cfa.tar.gz
bcm5719-llvm-08e19bb41262b14d9428159803287bfeee641cfa.zip
Removed LICM and GCSE.
llvm-svn: 19003
-rw-r--r--llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp
index 60d4da2898f..9a4ab4bbebd 100644
--- a/llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp
+++ b/llvm/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.
OpenPOWER on IntegriCloud