mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 18:49:27 +02:00
* fixed last commit, changing lastsaveintreg to r31 caused some strange problems
This commit is contained in:
parent
5f6578729b
commit
137395876d
@ -998,7 +998,7 @@ const
|
|||||||
|
|
||||||
usesgpr:=false;
|
usesgpr:=false;
|
||||||
if not (po_assembler in current_procdef.procoptions) then
|
if not (po_assembler in current_procdef.procoptions) then
|
||||||
for regcounter2:=firstsaveintreg to lastsaveintreg do
|
for regcounter2:=firstsaveintreg to RS_R31 do
|
||||||
begin
|
begin
|
||||||
if regcounter2 in rg.usedintbyproc then
|
if regcounter2 in rg.usedintbyproc then
|
||||||
begin
|
begin
|
||||||
@ -1181,7 +1181,7 @@ const
|
|||||||
|
|
||||||
usesgpr:=false;
|
usesgpr:=false;
|
||||||
if not (po_assembler in current_procdef.procoptions) then
|
if not (po_assembler in current_procdef.procoptions) then
|
||||||
for regcounter2:=firstsaveintreg to lastsaveintreg do
|
for regcounter2:=firstsaveintreg to RS_R31 do
|
||||||
begin
|
begin
|
||||||
if regcounter2 in rg.usedintbyproc then
|
if regcounter2 in rg.usedintbyproc then
|
||||||
begin
|
begin
|
||||||
@ -1281,7 +1281,7 @@ const
|
|||||||
|
|
||||||
usesgpr:=false;
|
usesgpr:=false;
|
||||||
if not (po_assembler in current_procdef.procoptions) then
|
if not (po_assembler in current_procdef.procoptions) then
|
||||||
for regcounter2:=firstsaveintreg to lastsaveintreg do
|
for regcounter2:=firstsaveintreg to RS_R31 do
|
||||||
begin
|
begin
|
||||||
if regcounter2 in rg.usedintbyproc then
|
if regcounter2 in rg.usedintbyproc then
|
||||||
begin
|
begin
|
||||||
@ -2392,7 +2392,10 @@ begin
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.92 2003-05-15 21:37:00 florian
|
Revision 1.93 2003-05-15 22:14:42 florian
|
||||||
|
* fixed last commit, changing lastsaveintreg to r31 caused some strange problems
|
||||||
|
|
||||||
|
Revision 1.92 2003/05/15 21:37:00 florian
|
||||||
* sysv entry code saves r13 now as well
|
* sysv entry code saves r13 now as well
|
||||||
|
|
||||||
Revision 1.91 2003/05/15 19:39:09 florian
|
Revision 1.91 2003/05/15 19:39:09 florian
|
||||||
|
@ -525,7 +525,7 @@ uses
|
|||||||
|
|
||||||
|
|
||||||
firstsaveintreg = RS_R13;
|
firstsaveintreg = RS_R13;
|
||||||
lastsaveintreg = RS_R31;
|
lastsaveintreg = RS_R27;
|
||||||
firstsavefpureg = R_F14;
|
firstsavefpureg = R_F14;
|
||||||
lastsavefpureg = R_F31;
|
lastsavefpureg = R_F31;
|
||||||
{ no altivec support yet. Need to override tcgobj.a_loadmm_* first in tcgppc }
|
{ no altivec support yet. Need to override tcgobj.a_loadmm_* first in tcgppc }
|
||||||
@ -852,7 +852,10 @@ implementation
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.49 2003-05-15 21:37:00 florian
|
Revision 1.50 2003-05-15 22:14:43 florian
|
||||||
|
* fixed last commit, changing lastsaveintreg to r31 caused some strange problems
|
||||||
|
|
||||||
|
Revision 1.49 2003/05/15 21:37:00 florian
|
||||||
* sysv entry code saves r13 now as well
|
* sysv entry code saves r13 now as well
|
||||||
|
|
||||||
Revision 1.48 2003/04/23 12:35:35 florian
|
Revision 1.48 2003/04/23 12:35:35 florian
|
||||||
|
Loading…
Reference in New Issue
Block a user