* ARM assembler reader: don't check for postfixes beyond the length

of the opcode

git-svn-id: trunk@29823 -
This commit is contained in:
Jonas Maebe 2015-02-23 22:47:56 +00:00
parent 1dd5f579e6
commit 3fe0bd065e

View File

@ -1220,7 +1220,7 @@ Unit raarmgas;
end;
end;
end;
maxlen:=max(length(hs),5);
maxlen:=min(length(hs),5);
actopcode:=A_NONE;
for j:=maxlen downto 1 do
begin