Browse Source

* Local var templist renamed localslist. No functional changes.

Nikolay Nikolov 1 year ago
parent
commit
db23f54f8c
1 changed files with 5 additions and 5 deletions
  1. 5 5
      compiler/wasm32/cpupi.pas

+ 5 - 5
compiler/wasm32/cpupi.pas

@@ -651,7 +651,7 @@ implementation
         end;
 
       var
-       templist: TAsmList;
+       localslist: TAsmList;
        l : TWasmLocal;
        first, labels_resolved: Boolean;
        local: tai_local;
@@ -659,7 +659,7 @@ implementation
       begin
         first_tai_functype:=findfirst_tai_functype(aktproccode);
 
-        templist:=TAsmList.create;
+        localslist:=TAsmList.create;
         local:=nil;
         first:=true;
         l:=ttgwasm(tg).localvars.first;
@@ -669,14 +669,14 @@ implementation
             local:=tai_local.create(l.typ);
             local.first:=first;
             first:=false;
-            templist.Concat(local);
+            localslist.Concat(local);
             l:=l.nextseq;
             Inc(FFirstFreeLocal);
           end;
         if assigned(local) then
           local.last:=true;
-        aktproccode.insertListAfter(first_tai_functype,templist);
-        templist.Free;
+        aktproccode.insertListAfter(first_tai_functype,localslist);
+        localslist.Free;
 
         replace_local_frame_pointer(aktproccode);