fix in operator_sse_compression gcc compatibility check

This commit is contained in:
Thorsten Liebig 2010-09-17 14:42:50 +02:00
parent 9dcf42f080
commit 482de93d3d

View File

@ -108,7 +108,7 @@ void Operator_SSE_Compressed::ShowStat() const
INLINE int equal(f4vector v1, f4vector v2)
{
#if defined(__SSE__)
#if (__GNUC__ == 4) && (__GNUC_PATCHLEVEL__ < 4)
#if (__GNUC__ == 4) && (__GNUC_MINOR__ < 4)
v4si compare = __builtin_ia32_cmpeqps( v1.v, v2.v );
return __builtin_ia32_movmskps( (v4sf)compare ) == 0x0f;
#else