Browse Source

* two comments fixed

florian 22 years ago
parent
commit
1b2a455ced
1 changed files with 11 additions and 8 deletions
  1. 11 8
      compiler/i386/cpuinfo.pas

+ 11 - 8
compiler/i386/cpuinfo.pas

@@ -27,17 +27,17 @@ Unit cpuinfo;
 Interface
 Interface
 
 
 Type
 Type
-   {# Natural integer register type and size for the target machine }
+   { Natural integer register type and size for the target machine }
    AWord = longword;
    AWord = longword;
    PAWord = ^AWord;
    PAWord = ^AWord;
 
 
-   { this must be an ordinal type with the same size as a pointer }
-   { Note: must be unsigned!! Otherwise, ugly code like           }
-   { pointer(-1) will result in a pointer with the value          }
-   { $fffffffffffffff on a 32bit machine if the compiler uses     }
-   { int64 constants internally (JM)                              }
+   { This must be an ordinal type with the same size as a pointer
+     Note: Must be unsigned! Otherwise, ugly code like
+     pointer(-1) will result in a pointer with the value
+     $fffffffffffffff on a 32bit machine if the compiler uses
+     int64 constants internally (JM)                              }
    TConstPtrUInt = longword;
    TConstPtrUInt = longword;
-   
+
    bestreal = extended;
    bestreal = extended;
    ts32real = single;
    ts32real = single;
    ts64real = double;
    ts64real = double;
@@ -77,7 +77,10 @@ Implementation
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.15  2002-09-07 20:48:43  carl
+  Revision 1.16  2002-12-05 14:18:09  florian
+    * two comments fixed
+
+  Revision 1.15  2002/09/07 20:48:43  carl
     * cardinal -> longword
     * cardinal -> longword
 
 
   Revision 1.14  2002/09/07 15:25:10  peter
   Revision 1.14  2002/09/07 15:25:10  peter