From fc98a0db4f917852568e8c777bb229ed7f2e53ff Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 3 Apr 2020 20:15:25 +0000 Subject: [PATCH] * cosmetics git-svn-id: trunk@44542 - --- compiler/nld.pas | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/compiler/nld.pas b/compiler/nld.pas index d5f91c5373..719c18618d 100644 --- a/compiler/nld.pas +++ b/compiler/nld.pas @@ -430,8 +430,8 @@ implementation ; constsym: begin - if tconstsym(symtableentry).consttyp=constresourcestring then - expectloc:=LOC_CREFERENCE; + if tconstsym(symtableentry).consttyp=constresourcestring then + expectloc:=LOC_CREFERENCE; end; staticvarsym, localvarsym, @@ -453,25 +453,25 @@ implementation end; end; procsym : - begin - { initialise left for nested procs if necessary } - if (m_nested_procvars in current_settings.modeswitches) then - setprocdef(fprocdef); - { method pointer or nested proc ? } - if assigned(left) then - begin - expectloc:=LOC_CREGISTER; - firstpass(left); - end; - end; - labelsym : - begin - if not assigned(tlabelsym(symtableentry).asmblocklabel) and - not assigned(tlabelsym(symtableentry).code) then - Message(parser_e_label_outside_proc); - end - else - internalerror(200104143); + begin + { initialise left for nested procs if necessary } + if (m_nested_procvars in current_settings.modeswitches) then + setprocdef(fprocdef); + { method pointer or nested proc ? } + if assigned(left) then + begin + expectloc:=LOC_CREGISTER; + firstpass(left); + end; + end; + labelsym : + begin + if not assigned(tlabelsym(symtableentry).asmblocklabel) and + not assigned(tlabelsym(symtableentry).code) then + Message(parser_e_label_outside_proc); + end + else + internalerror(200104143); end; end;