ShortFloat.st
changeset 7408 43bd10f2f2e6
parent 7407 e45ba1835e8d
child 7419 44b2f66791f1
--- 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 $'
 ! !