Oops. I forgot to change the tests first. Disable post-alloc scheduling.
authorEvan Cheng <evan.cheng@apple.com>
Sun, 18 Oct 2009 18:31:31 +0000 (18:31 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Sun, 18 Oct 2009 18:31:31 +0000 (18:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84425 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86Subtarget.h

index e9392f5b36fd5857572faa87693291282b8af5e1..aa9eb1d189bc0922bdf41be8d3745a7447c5f9a8 100644 (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*/;
   }
 };