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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84425 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2009-10-18 18:31:31 +00:00
parent ff89dcb06f
commit eb6e1daa43

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