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:
c2212f1
)
Turn off post-RA scheduler by default.
author
Akira Hatanaka
<ahatanaka@mips.com>
Wed, 28 Mar 2012 00:52:23 +0000
(
00:52
+0000)
committer
Akira Hatanaka
<ahatanaka@mips.com>
Wed, 28 Mar 2012 00:52:23 +0000
(
00:52
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153557
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/Mips/MipsSubtarget.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/Mips/MipsSubtarget.cpp
b/lib/Target/Mips/MipsSubtarget.cpp
index 0408a8575f77c4e7b95e2d3e714b9151335faf50..00347df9ac84ccad42d2b1c4085cb2bc10aa9ce1 100644
(file)
--- a/
lib/Target/Mips/MipsSubtarget.cpp
+++ b/
lib/Target/Mips/MipsSubtarget.cpp
@@
-64,5
+64,5
@@
MipsSubtarget::enablePostRAScheduler(CodeGenOpt::Level OptLevel,
CriticalPathRCs.clear();
CriticalPathRCs.push_back(hasMips64() ?
&Mips::CPU64RegsRegClass : &Mips::CPURegsRegClass);
- return OptLevel >= CodeGenOpt::
Default
;
+ return OptLevel >= CodeGenOpt::
Aggressive
;
}