summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-27 18:30:50 +0000
committerChris Lattner <sabre@nondot.org>2006-01-27 18:30:50 +0000
commit9f96a3283159d4912ebeb7504e1c467b5e6392b9 (patch)
tree5eceb4ffe8a96572d7ced11e2092129829760371 /lib
parentbb5830d127b8a07b86ca1fe764e8a51fbc0e2535 (diff)
downloadllvm-9f96a3283159d4912ebeb7504e1c467b5e6392b9.tar.gz
llvm-9f96a3283159d4912ebeb7504e1c467b5e6392b9.tar.bz2
llvm-9f96a3283159d4912ebeb7504e1c467b5e6392b9.tar.xz
force sse/3dnow off until they work. This fixes all the x86 failures last night
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25690 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/X86/X86Subtarget.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp
index 3826c12f3c..0f6c69c79b 100644
--- a/lib/Target/X86/X86Subtarget.cpp
+++ b/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.