From db23f54f8ce5bf8f519d0a7673476210fd747054 Mon Sep 17 00:00:00 2001 From: Nikolay Nikolov Date: Wed, 18 Oct 2023 01:41:25 +0300 Subject: [PATCH] * Local var templist renamed localslist. No functional changes. --- compiler/wasm32/cpupi.pas | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/wasm32/cpupi.pas b/compiler/wasm32/cpupi.pas index de023c7e26..48aa490629 100644 --- a/compiler/wasm32/cpupi.pas +++ b/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);