]> git.sesse.net Git - vlc/commitdiff
Used the proper define in SSE2 detection code.
authorLaurent Aimar <fenrir@videolan.org>
Mon, 23 Nov 2009 19:00:04 +0000 (20:00 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 24 Nov 2009 18:50:27 +0000 (19:50 +0100)
src/misc/cpu.c

index 5cce13fc64e2a8ff55d2b9c313e6462e2661ada9..8d7de4641cc349d1b6e33b7b29155280c8f8907f 100644 (file)
@@ -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" );