#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sun, 17 Mar 2019 13:03:22 +0100
changeset 23933 d2fd46589fe6
parent 23932 01800d8961bd
child 23934 1f2b39449d6d
#DOCUMENTATION by cg class: UninterpretedBytes class changed: #isBigEndian
UninterpretedBytes.st
--- a/UninterpretedBytes.st	Sun Mar 17 13:00:19 2019 +0100
+++ b/UninterpretedBytes.st	Sun Mar 17 13:03:22 2019 +0100
@@ -450,10 +450,12 @@
 isBigEndian
     "return true, if words/shorts store the most-significant
      byte first (MSB), false if least-sign.-first (LSB).
-     I.e. false for vax, intel; true for m68k, sun.
+     Returns 
+        false for vax, intel, 
+        true for m68k, m88k, power, sparc.
 
      Notice: UninterpretedBytes isBigEndian
-	     this is inlined both by stc and the jit compiler"
+             this is inlined both by stc and the jit compiler"
 
 %{  /* NOCONTEXT */
 
@@ -474,8 +476,8 @@
      *    constant for systems where this is known.
      */
     union {
-	unsigned int   u_l;
-	char           u_c[sizeof(int)];
+        unsigned int   u_l;
+        char           u_c[sizeof(int)];
     } u;
 
     u.u_l = 0x87654321;
@@ -489,6 +491,8 @@
     "
      UninterpretedBytes isBigEndian
     "
+
+    "Modified (comment): / 17-03-2019 / 13:02:29 / Claus Gittinger"
 !
 
 isBuiltInClass