1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

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 23505e5bb6
commit ef68ecdecc

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