From eb6e1daa4379f5d2a27ba487cbd6c5fc8d125d71 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Sun, 18 Oct 2009 18:31:31 +0000 Subject: [PATCH] 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 --- lib/Target/X86/X86Subtarget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/X86/X86Subtarget.h b/lib/Target/X86/X86Subtarget.h index e9392f5b36f..aa9eb1d189b 100644 --- a/lib/Target/X86/X86Subtarget.h +++ b/lib/Target/X86/X86Subtarget.h @@ -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*/; } }; -- 2.34.1