mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 23:39:31 +02:00
* compilation fixed
git-svn-id: trunk@41139 -
This commit is contained in:
parent
e52cf555ab
commit
2b6076a719
@ -2694,9 +2694,9 @@ unit cgcpu;
|
||||
((ref.symbol=nil) and
|
||||
(ref.addressmode=AM_OFFSET) and
|
||||
(((ref.offset>=0) and (ref.offset+len<=31)) or
|
||||
(not(GenerateThumbCode) and (ref.offset>=-255) and (ref.offset+len<=255))
|
||||
(not(GenerateThumbCode) and (ref.offset>=-255) and (ref.offset+len<=255)) or
|
||||
{ ldrh has a limited offset range }
|
||||
(not(GenerateThumbCode) and ((len mod 4) in [0,1]) and (ref.offset>=-4095) and (ref.offset+len<=4095))}
|
||||
(not(GenerateThumbCode) and ((len mod 4) in [0,1]) and (ref.offset>=-4095) and (ref.offset+len<=4095))
|
||||
)
|
||||
);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user