mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-29 08:46:12 +02:00
* ldf*/stf* can handle only offsets with max. +/- 1020, so generate never a pc relative symbol
git-svn-id: trunk@1649 -
This commit is contained in:
parent
e4a61f4af1
commit
12a1449884
@ -614,7 +614,9 @@ unit cgcpu;
|
|||||||
) or
|
) or
|
||||||
((op in [A_LDF,A_STF]) and
|
((op in [A_LDF,A_STF]) and
|
||||||
((ref.offset<-1020) or
|
((ref.offset<-1020) or
|
||||||
(ref.offset>1020)
|
(ref.offset>1020) or
|
||||||
|
{ the usual pc relative symbol handling assumes possible offsets of +/- 4095 }
|
||||||
|
assigned(ref.symbol)
|
||||||
)
|
)
|
||||||
) then
|
) then
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user