projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff89dcb
)
Oops. I forgot to change the tests first. Disable post-alloc scheduling.
author
Evan Cheng
<evan.cheng@apple.com>
Sun, 18 Oct 2009 18:31:31 +0000
(18:31 +0000)
committer
Evan 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
patch
|
blob
|
history
diff --git
a/lib/Target/X86/X86Subtarget.h
b/lib/Target/X86/X86Subtarget.h
index e9392f5b36fd5857572faa87693291282b8af5e1..aa9eb1d189bc0922bdf41be8d3745a7447c5f9a8 100644
(file)
--- 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*/
;
}
};