Browse Source

Fix off by 1 error in assembler reader which prevented B instructions from being parsed.

git-svn-id: branches/laksen/armiw@30147 -
Jeppe Johansen 10 years ago
parent
commit
03b9e5117f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/arm/raarmgas.pas

+ 1 - 1
compiler/arm/raarmgas.pas

@@ -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