* ARM: (V)LDM do not load from the registers in the reg. set

git-svn-id: trunk@45525 -
This commit is contained in:
florian 2020-05-28 21:37:05 +00:00
parent 3f95fa50ef
commit 651f5cb8a1

View File

@ -191,7 +191,11 @@ Implementation
else
;
end;
if instructionLoadsFromReg then exit; {Bailout if we found something}
if (i=0) and (p.opcode in [A_LDM,A_VLDM]) then
exit;
if instructionLoadsFromReg then
exit; {Bailout if we found something}
Inc(I);
end;
end;