Pārlūkot izejas kodu

* Moved toperand type to aasm

michael 26 gadi atpakaļ
vecāks
revīzija
16afc140e9
2 mainītis faili ar 21 papildinājumiem un 19 dzēšanām
  1. 17 1
      compiler/aasm.pas
  2. 4 18
      compiler/i386base.pas

+ 17 - 1
compiler/aasm.pas

@@ -28,6 +28,19 @@ unit aasm;
        globtype,systems,cobjects,files,globals;
 
     type
+       { Types of operand }
+        toptype=(top_none,top_reg,top_ref,top_const,top_symbol);
+
+        toper=record
+          ot  : longint;
+          case typ : toptype of
+           top_none   : ();
+           top_reg    : (reg:tregister);
+           top_ref    : (ref:preference);
+           top_const  : (val:longint);
+           top_symbol : (sym:pasmsymbol;symofs:longint);
+        end;
+
        tait = (
           ait_none,
           ait_direct,
@@ -965,7 +978,10 @@ uses
 end.
 {
   $Log$
-  Revision 1.55  1999-08-01 23:55:55  michael
+  Revision 1.56  1999-08-02 20:45:47  michael
+  * Moved toperand type to aasm
+
+  Revision 1.55  1999/08/01 23:55:55  michael
   * Moved taitempalloc
 
   Revision 1.54  1999/07/29 20:53:55  peter

+ 4 - 18
compiler/i386base.pas

@@ -639,23 +639,6 @@ type
   end;
 
 
-{*****************************************************************************
-                                Operand
-*****************************************************************************}
-
-type
-  toptype=(top_none,top_reg,top_ref,top_const,top_symbol);
-
-  toper=record
-    ot  : longint;
-    case typ : toptype of
-     top_none   : ();
-     top_reg    : (reg:tregister);
-     top_ref    : (ref:preference);
-     top_const  : (val:longint);
-     top_symbol : (sym:pasmsymbol;symofs:longint);
-  end;
-
 
 {*****************************************************************************
                                Generic Location
@@ -1006,7 +989,10 @@ begin
 end.
 {
   $Log$
-  Revision 1.7  1999-08-02 17:17:09  florian
+  Revision 1.8  1999-08-02 20:45:49  michael
+  * Moved toperand type to aasm
+
+  Revision 1.7  1999/08/02 17:17:09  florian
     * small changes for the new code generator
 
   Revision 1.6  1999/06/06 15:53:15  peter