diff -r e45ba1835e8d -r 43bd10f2f2e6 ShortFloat.st --- a/ShortFloat.st Tue Jun 17 18:06:32 2003 +0200 +++ b/ShortFloat.st Tue Jun 17 18:10:28 2003 +0200 @@ -1027,9 +1027,9 @@ however, inline C-code could produce them ..." %{ /* NOCONTEXT */ -#if defined(i386) && defined(__GNUC__) +#if defined(__GNUC__) if (isnanf(__shortFloatVal(self))) { RETURN (true); } -#else +# else double dV = (double)(__shortFloatVal(self)); @@ -1423,5 +1423,5 @@ !ShortFloat class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.77 2003-06-17 16:06:32 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.78 2003-06-17 16:10:28 cg Exp $' ! !