From ee715577df497906aa90034572677835e4702a76 Mon Sep 17 00:00:00 2001 From: weidai Date: Sun, 25 Jul 2010 21:39:59 +0000 Subject: fix compile on Mac OS X git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@510 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- cpu.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpu.cpp') diff --git a/cpu.cpp b/cpu.cpp index c1a1d95..7a0079a 100755 --- a/cpu.cpp +++ b/cpu.cpp @@ -13,7 +13,7 @@ #include #endif -#ifdef CRYPTOPP_MSVC6PP_OR_LATER +#if CRYPTOPP_BOOL_SSE2_INTRINSICS_AVAILABLE #include #endif @@ -108,7 +108,7 @@ static bool TrySSE2() #if CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE AS2(por xmm0, xmm0) // executing SSE2 instruction #elif CRYPTOPP_BOOL_SSE2_INTRINSICS_AVAILABLE - __mm128i x = _mm_setzero_si128(); + __m128i x = _mm_setzero_si128(); return _mm_cvtsi128_si32(x) == 0; #endif } @@ -130,7 +130,7 @@ static bool TrySSE2() #if CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE __asm __volatile ("por %xmm0, %xmm0"); #elif CRYPTOPP_BOOL_SSE2_INTRINSICS_AVAILABLE - __mm128i x = _mm_setzero_si128(); + __m128i x = _mm_setzero_si128(); result = _mm_cvtsi128_si32(x) == 0; #endif } -- cgit v1.2.1