LargeInteger.st
changeset 4268 506e49eb659b
parent 4266 de62998499ce
child 4270 01f4b79450ff
--- a/LargeInteger.st	Fri Jun 04 21:43:29 1999 +0200
+++ b/LargeInteger.st	Fri Jun 04 21:48:59 1999 +0200
@@ -2854,9 +2854,9 @@
                 unsigned int _short3;
 
                 _short2 = ((unsigned short *)_p2)[0];
-                _short2 = ((_short2 >> 8) & 0xFF) | ((_short2 & 0xFF) << 8);
+                _short2 = ((_short2 >> 8) /* & 0xFF */) | ((_short2 & 0xFF) << 8);
                 _short3 = ((unsigned short *)_pResult)[0];
-                _short3 = ((_short3 >> 8) & 0xFF) | ((_short3 & 0xFF) << 8);
+                _short3 = ((_short3 >> 8) /* & 0xFF */) | ((_short3 & 0xFF) << 8);
                 _v = (short1 * _short2) + _short3;
                 _pResult[0] = _v;
                 _pResult[1] = _v >> 8;
@@ -2893,7 +2893,7 @@
                 unsigned int _short3;
 
                 _short3 = ((unsigned short *)_pResult)[0];
-                _short3 = ((_short3 >> 8) & 0xFF) | ((_short3 & 0xFF) << 8);
+                _short3 = ((_short3 >> 8) /* & 0xFF */) | ((_short3 & 0xFF) << 8);
                 _v = (short1 * _p2[0]) + _short3;
                 _pResult[0] = _v;
                 _pResult[1] = _v >> 8;
@@ -2939,9 +2939,9 @@
                 unsigned int _short3;
 
                 _short2 = ((unsigned short *)_p2)[0];
-                _short2 = ((_short2 >> 8) & 0xFF) | ((_short2 & 0xFF) << 8);
+                _short2 = ((_short2 >> 8) /* & 0xFF */) | ((_short2 & 0xFF) << 8);
                 _short3 = ((unsigned short *)_pResult)[0];
-                _short3 = ((_short3 >> 8) & 0xFF) | ((_short3 & 0xFF) << 8);
+                _short3 = ((_short3 >> 8) /* & 0xFF */) | ((_short3 & 0xFF) << 8);
                 _v = (byte1 * _short2) + _short3;
                 _pResult[0] = _v;
                 _pResult[1] = _v >> 8;
@@ -3818,5 +3818,5 @@
 !LargeInteger class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LargeInteger.st,v 1.121 1999-06-04 19:42:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LargeInteger.st,v 1.122 1999-06-04 19:48:59 cg Exp $'
 ! !