mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 18:29:27 +02:00
m68k: plain 68000 also needs extra handling for large offsets
git-svn-id: trunk@28423 -
This commit is contained in:
parent
9b0bf91076
commit
ccc9bc0941
@ -60,7 +60,7 @@ unit rgcpu;
|
||||
helplist : tasmlist;
|
||||
hreg : tregister;
|
||||
begin
|
||||
if (abs(spilltemp.offset)>32767) and (current_settings.cputype in cpu_coldfire) then
|
||||
if (abs(spilltemp.offset)>32767) and (current_settings.cputype in (cpu_coldfire + [cpu_mc68000])) then
|
||||
begin
|
||||
helplist:=tasmlist.create;
|
||||
|
||||
@ -92,7 +92,7 @@ unit rgcpu;
|
||||
helplist : tasmlist;
|
||||
hreg : tregister;
|
||||
begin
|
||||
if (abs(spilltemp.offset)>32767) and (current_settings.cputype in cpu_coldfire) then
|
||||
if (abs(spilltemp.offset)>32767) and (current_settings.cputype in (cpu_coldfire + [cpu_mc68000])) then
|
||||
begin
|
||||
helplist:=tasmlist.create;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user