mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-01 20:21:23 +02:00
Fix off by 1 error in assembler reader which prevented B instructions from being parsed.
git-svn-id: branches/laksen/armiw@30147 -
This commit is contained in:
parent
914e9e7b49
commit
03b9e5117f
@ -1290,7 +1290,7 @@ Unit raarmgas;
|
||||
actopcode:=A_NONE;
|
||||
j2:=maxlen;
|
||||
hs2:=hs;
|
||||
while j2>1 do
|
||||
while j2>=1 do
|
||||
begin
|
||||
hs:=hs2;
|
||||
while j2>=1 do
|
||||
|
Loading…
Reference in New Issue
Block a user