diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-10-18 18:31:31 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-10-18 18:31:31 +0000 |
commit | eb6e1daa4379f5d2a27ba487cbd6c5fc8d125d71 (patch) | |
tree | 8f00f34953ee767f7bc157bea8ede5beeef24886 /lib | |
parent | ff89dcb06fbd103373436e2d0ae85f252fae2254 (diff) |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/X86/X86Subtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86Subtarget.h b/lib/Target/X86/X86Subtarget.h index e9392f5b36..aa9eb1d189 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*/; } }; |