From: Evan Cheng Date: Thu, 3 Apr 2008 04:49:54 +0000 (+0000) Subject: Temporarily disabling SSE4 until we fix the encoding issues. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b4e56d4a2bc5a18507b2d255abf75f7850f41c04;p=oota-llvm.git 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 --- diff --git a/lib/Target/X86/X86Subtarget.h b/lib/Target/X86/X86Subtarget.h index c91088dcdf6..c30321a5551 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; }