"David Mathog" <mat...@caltech.edu> writes:

> Yup, my bad, put in d where it should have been ll.  Also fixed the
> problem I induced in sse2-check.h, where too large a chunk was commented
> out, that was causing the gcc -Wall -msse2 problem.  The changed part in
> the original source was
>
>   if ((edx & bit_SSE2) && sse_os_support ())
>
> and is now:
>
> #if !defined(SOFT_SSE2)
>   if ((edx & bit_SSE2) && sse_os_support ())
> #else
>   if (sse_os_support ())
> #endif /*SOFT_SSE2*/

I wouldn't do it this way, but simply always return 1 from
sse_os_support if SOFT_SSE2.

        Rainer

-- 
-----------------------------------------------------------------------------
Rainer Orth, Center for Biotechnology, Bielefeld University

Reply via email to