mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
Do allocate a new regset for top_regset for ARM compiler to avoid heap memory corruption
This commit is contained in:
parent
f6a0da71fc
commit
1e5240b5a4
@ -3159,6 +3159,11 @@ implementation
|
||||
{$endif jvm}
|
||||
end;
|
||||
{$ifdef ARM}
|
||||
top_regset:
|
||||
begin
|
||||
new(p.oper[i]^.regset);
|
||||
p.oper[i]^.regset^:=oper[i]^.regset^;
|
||||
end;
|
||||
top_shifterop:
|
||||
begin
|
||||
new(p.oper[i]^.shifterop);
|
||||
|
Loading…
Reference in New Issue
Block a user