Commit 8c6b569c authored by Laurent Aimar's avatar Laurent Aimar

Used the proper define in SSE2 detection code.

parent 7d80f76b
...@@ -187,7 +187,7 @@ uint32_t CPUCapabilities( void ) ...@@ -187,7 +187,7 @@ uint32_t CPUCapabilities( void )
# if defined (__SSE2__) # if defined (__SSE2__)
i_capabilities |= CPU_CAPABILITY_SSE2; i_capabilities |= CPU_CAPABILITY_SSE2;
# elif defined (CAN_COMPILE_SSE) # elif defined (CAN_COMPILE_SSE2)
if( i_edx & 0x04000000 ) if( i_edx & 0x04000000 )
check_capability( "SSE2", CPU_CAPABILITY_SSE2, check_capability( "SSE2", CPU_CAPABILITY_SSE2,
"movupd %%xmm0, %%xmm0\n" ); "movupd %%xmm0, %%xmm0\n" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment