Sfoglia il codice sorgente

* fixed a compilation bug accmulator-->accumulator, in definition of return_result_reg

mazen 23 anni fa
parent
commit
a835405a27

+ 5 - 2
compiler/alpha/cpubase.pas

@@ -135,7 +135,7 @@ unit cpubase;
   {the return_result_reg, is used inside the called function to store its return
   value when that is a scalar value otherwise a pointer to the address of the
   result is placed inside it}
-	return_result_reg		=	accmulator;
+	return_result_reg		=	accumulator;
 
   {the function_result_reg contains the function result after a call to a scalar
   function othewise it contains a pointer to the returned result}
@@ -458,7 +458,10 @@ end;
 end.
 {
   $Log$
-  Revision 1.5  2002-11-17 17:49:08  mazen
+  Revision 1.6  2002-11-17 18:26:15  mazen
+  * fixed a compilation bug accmulator-->accumulator, in definition of return_result_reg
+
+  Revision 1.5  2002/11/17 17:49:08  mazen
   + return_result_reg and function_result_reg are now used, in all plateforms, to pass functions result between called function and its caller. See the explanation of each one
 
   Revision 1.4  2002/09/29 23:54:12  florian

+ 5 - 2
compiler/i386/cpubase.pas

@@ -448,7 +448,7 @@ uses
   {the return_result_reg, is used inside the called function to store its return
   value when that is a scalar value otherwise a pointer to the address of the
   result is placed inside it}
-	return_result_reg		=	accmulator;
+	return_result_reg		=	accumulator;
 
   {the function_result_reg contains the function result after a call to a scalar
   function othewise it contains a pointer to the returned result}
@@ -533,7 +533,10 @@ implementation
 end.
 {
   $Log$
-  Revision 1.33  2002-11-17 17:49:08  mazen
+  Revision 1.34  2002-11-17 18:26:16  mazen
+  * fixed a compilation bug accmulator-->accumulator, in definition of return_result_reg
+
+  Revision 1.33  2002/11/17 17:49:08  mazen
   + return_result_reg and function_result_reg are now used, in all plateforms, to pass functions result between called function and its caller. See the explanation of each one
 
   Revision 1.32  2002/10/05 12:43:29  carl

+ 5 - 2
compiler/ia64/cpubase.pas

@@ -95,7 +95,7 @@ Const
   {the return_result_reg, is used inside the called function to store its return
   value when that is a scalar value otherwise a pointer to the address of the
   result is placed inside it}
-	return_result_reg		=	accmulator;
+	return_result_reg		=	accumulator;
 
   {the function_result_reg contains the function result after a call to a scalar
   function othewise it contains a pointer to the returned result}
@@ -283,7 +283,10 @@ implementation
 end.
 {
   $Log$
-  Revision 1.5  2002-11-17 17:49:09  mazen
+  Revision 1.6  2002-11-17 18:26:16  mazen
+  * fixed a compilation bug accmulator-->accumulator, in definition of return_result_reg
+
+  Revision 1.5  2002/11/17 17:49:09  mazen
   + return_result_reg and function_result_reg are now used, in all plateforms, to pass functions result between called function and its caller. See the explanation of each one
 
   Revision 1.4  2002/09/07 15:25:11  peter

+ 5 - 2
compiler/m68k/cpubase.pas

@@ -493,7 +493,7 @@ uses
   {the return_result_reg, is used inside the called function to store its return
   value when that is a scalar value otherwise a pointer to the address of the
   result is placed inside it}
-	return_result_reg		=	accmulator;
+	return_result_reg		=	accumulator;
 
   {the function_result_reg contains the function result after a call to a scalar
   function othewise it contains a pointer to the returned result}
@@ -592,7 +592,10 @@ implementation
 end.
 {
   $Log$
-  Revision 1.12  2002-11-17 17:49:09  mazen
+  Revision 1.13  2002-11-17 18:26:16  mazen
+  * fixed a compilation bug accmulator-->accumulator, in definition of return_result_reg
+
+  Revision 1.12  2002/11/17 17:49:09  mazen
   + return_result_reg and function_result_reg are now used, in all plateforms, to pass functions result between called function and its caller. See the explanation of each one
 
   Revision 1.11  2002/10/14 16:32:36  carl

+ 5 - 2
compiler/powerpc/cpubase.pas

@@ -594,7 +594,7 @@ uses
   {the return_result_reg, is used inside the called function to store its return
   value when that is a scalar value otherwise a pointer to the address of the
   result is placed inside it}
-	return_result_reg		=	accmulator;
+	return_result_reg		=	accumulator;
 
   {the function_result_reg contains the function result after a call to a scalar
   function othewise it contains a pointer to the returned result}
@@ -729,7 +729,10 @@ implementation
 end.
 {
   $Log$
-  Revision 1.35  2002-11-17 17:49:09  mazen
+  Revision 1.36  2002-11-17 18:26:16  mazen
+  * fixed a compilation bug accmulator-->accumulator, in definition of return_result_reg
+
+  Revision 1.35  2002/11/17 17:49:09  mazen
   + return_result_reg and function_result_reg are now used, in all plateforms, to pass functions result between called function and its caller. See the explanation of each one
 
   Revision 1.34  2002/09/17 18:54:06  jonas

+ 5 - 2
compiler/vis/cpubase.pas

@@ -440,7 +440,7 @@ uses
   {the return_result_reg, is used inside the called function to store its return
   value when that is a scalar value otherwise a pointer to the address of the
   result is placed inside it}
-	return_result_reg		=	accmulator;
+	return_result_reg		=	accumulator;
 
   {the function_result_reg contains the function result after a call to a scalar
   function othewise it contains a pointer to the returned result}
@@ -534,7 +534,10 @@ implementation
 end.
 {
   $Log$
-  Revision 1.2  2002-11-17 17:49:09  mazen
+  Revision 1.3  2002-11-17 18:26:16  mazen
+  * fixed a compilation bug accmulator-->accumulator, in definition of return_result_reg
+
+  Revision 1.2  2002/11/17 17:49:09  mazen
   + return_result_reg and function_result_reg are now used, in all plateforms, to pass functions result between called function and its caller. See the explanation of each one
 
   Revision 1.1  2002/10/14 16:31:52  carl

+ 5 - 2
compiler/x86_64/cpubase.pas

@@ -416,7 +416,7 @@ const
   {the return_result_reg, is used inside the called function to store its return
   value when that is a scalar value otherwise a pointer to the address of the
   result is placed inside it}
-	return_result_reg		=	accmulator;
+	return_result_reg		=	accumulator;
 
   {the function_result_reg contains the function result after a call to a scalar
   function othewise it contains a pointer to the returned result}
@@ -499,7 +499,10 @@ implementation
 end.
 {
   $Log$
-  Revision 1.3  2002-11-17 17:49:09  mazen
+  Revision 1.4  2002-11-17 18:26:16  mazen
+  * fixed a compilation bug accmulator-->accumulator, in definition of return_result_reg
+
+  Revision 1.3  2002/11/17 17:49:09  mazen
   + return_result_reg and function_result_reg are now used, in all plateforms, to pass functions result between called function and its caller. See the explanation of each one
 
   Revision 1.2  2002/07/25 22:55:33  florian