Temporarily disabling SSE4 until we fix the encoding issues.
authorEvan Cheng <evan.cheng@apple.com>
Thu, 3 Apr 2008 04:49:54 +0000 (04:49 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Thu, 3 Apr 2008 04:49:54 +0000 (04:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49129 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86Subtarget.h

index c91088dcdf62f9c07bb995905701f608308d8a41..c30321a5551914edd040879a0999afd36fce096d 100644 (file)
@@ -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; }