diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-04-03 04:49:54 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-04-03 04:49:54 +0000 |
commit | b4e56d4a2bc5a18507b2d255abf75f7850f41c04 (patch) | |
tree | f849bcbd8ad7820c0a3b844c06ef8cfc862c7f70 | |
parent | 6397c64441ddce3822ab0e712f224a11bd75811c (diff) |
Temporarily disabling SSE4 until we fix the encoding issues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49129 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86Subtarget.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Target/X86/X86Subtarget.h b/lib/Target/X86/X86Subtarget.h index c91088dcdf..c30321a555 100644 --- a/lib/Target/X86/X86Subtarget.h +++ b/lib/Target/X86/X86Subtarget.h @@ -119,8 +119,9 @@ public: bool hasSSE2() const { return X86SSELevel >= SSE2; } bool hasSSE3() const { return X86SSELevel >= SSE3; } bool hasSSSE3() const { return X86SSELevel >= SSSE3; } - bool hasSSE41() const { return X86SSELevel >= SSE41; } - bool hasSSE42() const { return X86SSELevel >= SSE42; } + // Temporarily disabling SSE4. + bool hasSSE41() const { return false && X86SSELevel >= SSE41; } + bool hasSSE42() const { return false && X86SSELevel >= SSE42; } bool has3DNow() const { return X863DNowLevel >= ThreeDNow; } bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; } |