mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 07:19:26 +02:00
* use generic code for a_load_subsetref_regs_noindex on ppc64le
git-svn-id: trunk@30216 -
This commit is contained in:
parent
c69265a61c
commit
eee83ebb4a
@ -44,6 +44,7 @@ implementation
|
||||
|
||||
uses
|
||||
cpubase,globtype,
|
||||
systems,
|
||||
procinfo,cpupi,
|
||||
symdef,defutil;
|
||||
|
||||
@ -54,6 +55,12 @@ implementation
|
||||
fromsreg, tosreg: tsubsetregister;
|
||||
restbits: byte;
|
||||
begin
|
||||
{ the code below is only valid for big endian }
|
||||
if target_info.endian=endian_little then
|
||||
begin
|
||||
inherited;
|
||||
exit
|
||||
end;
|
||||
restbits:=(sref.bitlen-(loadbitsize-sref.startbit));
|
||||
if is_signed(subsetsize) then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user