Browse Source

Avoid range check error inside genitem_thumb2 by changing local variable i type

git-svn-id: trunk@49278 -
pierre 4 years ago
parent
commit
423940afd7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/arm/narmset.pas

+ 1 - 1
compiler/arm/narmset.pas

@@ -191,7 +191,7 @@ implementation
 
         procedure genitem_thumb2(list:TAsmList;t : pcaselabel);
           var
-            i : aint;
+            i : int64;
           begin
             if assigned(t^.less) then
               genitem_thumb2(list,t^.less);