mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 16:48:12 +02:00
* fixed relabeling to relabel only tasmlabel (formerly proclocal)
This commit is contained in:
parent
a870740c0e
commit
c3d39472cd
@ -110,7 +110,9 @@ interface
|
||||
|
||||
procedure ReLabel(var p:tasmsymbol);
|
||||
begin
|
||||
if p.defbind = AB_LOCAL then
|
||||
{ Only relabel local tasmlabels }
|
||||
if (p.defbind = AB_LOCAL) and
|
||||
(p is tasmlabel) then
|
||||
begin
|
||||
if not assigned(p.altsymbol) then
|
||||
objectlibrary.GenerateAltSymbol(p);
|
||||
@ -288,7 +290,10 @@ begin
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.27 2002-11-27 02:37:13 peter
|
||||
Revision 1.28 2002-11-27 15:33:19 peter
|
||||
* fixed relabeling to relabel only tasmlabel (formerly proclocal)
|
||||
|
||||
Revision 1.27 2002/11/27 02:37:13 peter
|
||||
* case statement inlining added
|
||||
* fixed inlining of write()
|
||||
* switched statementnode left and right parts so the statements are
|
||||
|
Loading…
Reference in New Issue
Block a user