From a835405a27c93b77aec7967b9cdba863d5f7c125 Mon Sep 17 00:00:00 2001 From: mazen Date: Sun, 17 Nov 2002 18:26:15 +0000 Subject: [PATCH] * fixed a compilation bug accmulator-->accumulator, in definition of return_result_reg --- compiler/alpha/cpubase.pas | 7 +++++-- compiler/i386/cpubase.pas | 7 +++++-- compiler/ia64/cpubase.pas | 7 +++++-- compiler/m68k/cpubase.pas | 7 +++++-- compiler/powerpc/cpubase.pas | 7 +++++-- compiler/vis/cpubase.pas | 7 +++++-- compiler/x86_64/cpubase.pas | 7 +++++-- 7 files changed, 35 insertions(+), 14 deletions(-) diff --git a/compiler/alpha/cpubase.pas b/compiler/alpha/cpubase.pas index 5d4aea4a73..060fd247d7 100644 --- a/compiler/alpha/cpubase.pas +++ b/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 diff --git a/compiler/i386/cpubase.pas b/compiler/i386/cpubase.pas index 6e6a4d0b0d..930f894b55 100644 --- a/compiler/i386/cpubase.pas +++ b/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 diff --git a/compiler/ia64/cpubase.pas b/compiler/ia64/cpubase.pas index 3d40af234a..e9e73bddb2 100644 --- a/compiler/ia64/cpubase.pas +++ b/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 diff --git a/compiler/m68k/cpubase.pas b/compiler/m68k/cpubase.pas index 2e9a15a39d..4a2618f732 100644 --- a/compiler/m68k/cpubase.pas +++ b/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 diff --git a/compiler/powerpc/cpubase.pas b/compiler/powerpc/cpubase.pas index 56cf4179ad..ec5cd59a0b 100644 --- a/compiler/powerpc/cpubase.pas +++ b/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 diff --git a/compiler/vis/cpubase.pas b/compiler/vis/cpubase.pas index 8253ee218b..6fe5fc05e9 100644 --- a/compiler/vis/cpubase.pas +++ b/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 diff --git a/compiler/x86_64/cpubase.pas b/compiler/x86_64/cpubase.pas index d356e8e060..346797d93e 100644 --- a/compiler/x86_64/cpubase.pas +++ b/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