Turn off post-RA scheduler by default.

llvm-svn: 153557
This commit is contained in:
Akira Hatanaka 2012-03-28 00:52:23 +00:00
parent bb2a6da440
commit 2c67006cdd
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}