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
This commit is contained in:
Chris Lattner 2006-01-27 18:30:50 +00:00
parent bb5830d127
commit 9f96a32831

View File

@ -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.