Oops. I forgot to change the tests first. Disable post-alloc scheduling.

llvm-svn: 84425
This commit is contained in:
Evan Cheng 2009-10-18 18:31:31 +00:00
parent e921ebe70d
commit 1f32fa84b0

View File

@ -220,7 +220,7 @@ public:
/// at 'More' optimization level.
bool enablePostRAScheduler(CodeGenOpt::Level OptLevel) const {
// FIXME: This causes llvm to miscompile itself on i386. :-(
return OptLevel >= CodeGenOpt::Default;
return false /*OptLevel >= CodeGenOpt::Default*/;
}
};