Browse Source

* fixed different parameter name in interface and implementation
declaration of a method (only 1.0.x detected this)

Jonas Maebe 23 years ago
parent
commit
43368392e2
1 changed files with 7 additions and 3 deletions
  1. 7 3
      compiler/rgobj.pas

+ 7 - 3
compiler/rgobj.pas

@@ -696,7 +696,7 @@ unit rgobj;
 {$endif TEMPREGDEBUG}
 
 
-    procedure trgobj.saveStateForInline(var p: pointer);
+    procedure trgobj.saveStateForInline(var state: pointer);
       begin
         new(psavedstate(state));
         psavedstate(state)^.unusedregsint := unusedregsint;
@@ -779,7 +779,11 @@ end.
 
 {
   $Log$
-  Revision 1.1  2002-03-31 20:26:36  jonas
+  Revision 1.2  2002-04-01 19:24:25  jonas
+    * fixed different parameter name in interface and implementation
+      declaration of a method (only 1.0.x detected this)
+
+  Revision 1.1  2002/03/31 20:26:36  jonas
     + a_loadfpu_* and a_loadmm_* methods in tcg
     * register allocation is now handled by a class and is mostly processor
       independent (+rgobj.pas and i386/rgcpu.pas)
@@ -796,4 +800,4 @@ end.
     - list field removed of the tnode class because it's not used currently
       and can cause hard-to-find bugs
 
-}
+}