]> granicus.if.org Git - clang/commitdiff
Fix a typo: _MM_FLUSH_ZERO_OFF has the wrong value. rdar://10716672
authorBob Wilson <bob.wilson@apple.com>
Mon, 23 Jan 2012 18:27:24 +0000 (18:27 +0000)
committerBob Wilson <bob.wilson@apple.com>
Mon, 23 Jan 2012 18:27:24 +0000 (18:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148711 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Headers/xmmintrin.h

index 51ce5a135ce73503600e8245eef4bc24fb73225b..e616157b047c49a7a818913cbf9cd6255db40207 100644 (file)
@@ -938,7 +938,7 @@ _mm_movemask_ps(__m128 a)
 
 #define _MM_FLUSH_ZERO_MASK   (0x8000)
 #define _MM_FLUSH_ZERO_ON     (0x8000)
-#define _MM_FLUSH_ZERO_OFF    (0x8000)
+#define _MM_FLUSH_ZERO_OFF    (0x0000)
 
 #define _MM_GET_EXCEPTION_MASK() (_mm_getcsr() & _MM_MASK_MASK)
 #define _MM_GET_EXCEPTION_STATE() (_mm_getcsr() & _MM_EXCEPT_MASK)