projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f1131b3
)
Removed LICM and GCSE.
author
Tanya Lattner
<tonic@nondot.org>
Thu, 16 Dec 2004 23:07:36 +0000
(23:07 +0000)
committer
Tanya Lattner
<tonic@nondot.org>
Thu, 16 Dec 2004 23:07:36 +0000
(23:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19003
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/SparcV9/SparcV9TargetMachine.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/SparcV9/SparcV9TargetMachine.cpp
b/lib/Target/SparcV9/SparcV9TargetMachine.cpp
index 60d4da2898f2d01b9ff978e6d2ac52ce229d4227..9a4ab4bbebde17900d0e01872a3848bcd1628ef2 100644
(file)
--- 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.