From 8c6b569c4bc433a51a76440780fc33c605b95ffa Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Mon, 23 Nov 2009 20:00:04 +0100 Subject: [PATCH] Used the proper define in SSE2 detection code. --- src/misc/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/cpu.c b/src/misc/cpu.c index 5cce13fc64..8d7de4641c 100644 --- a/src/misc/cpu.c +++ b/src/misc/cpu.c @@ -187,7 +187,7 @@ uint32_t CPUCapabilities( void ) # if defined (__SSE2__) i_capabilities |= CPU_CAPABILITY_SSE2; -# elif defined (CAN_COMPILE_SSE) +# elif defined (CAN_COMPILE_SSE2) if( i_edx & 0x04000000 ) check_capability( "SSE2", CPU_CAPABILITY_SSE2, "movupd %%xmm0, %%xmm0\n" ); -- 2.39.2