diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-27 18:30:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-27 18:30:50 +0000 |
commit | 4be147f456fef3864d0842b76959c4cbfe264189 (patch) | |
tree | df48e7078129ee02d798dac91de2329ba7f85e1a /llvm/lib/Target/X86/X86Subtarget.cpp | |
parent | 116bb154735883bda50e30fadd2f118acaf6f654 (diff) | |
download | bcm5719-llvm-4be147f456fef3864d0842b76959c4cbfe264189.tar.gz bcm5719-llvm-4be147f456fef3864d0842b76959c4cbfe264189.zip |
force sse/3dnow off until they work. This fixes all the x86 failures last night
llvm-svn: 25690
Diffstat (limited to 'llvm/lib/Target/X86/X86Subtarget.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86Subtarget.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86Subtarget.cpp b/llvm/lib/Target/X86/X86Subtarget.cpp index 3826c12f3c1..0f6c69c79b0 100644 --- a/llvm/lib/Target/X86/X86Subtarget.cpp +++ b/llvm/lib/Target/X86/X86Subtarget.cpp @@ -94,6 +94,11 @@ X86Subtarget::X86Subtarget(const Module &M, const std::string &FS) // Default to ELF unless otherwise specified. TargetType = isELF; + + // FIXME: Force these off until they work. An llc-beta option should turn + // them back on. + X86SSELevel = NoMMXSSE; + X863DNowLevel = NoThreeDNow; // Set the boolean corresponding to the current target triple, or the default // if one cannot be determined, to true. |