mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 23:19:24 +02:00
* check if labsym is assigned before testing if it's used globally
git-svn-id: trunk@15754 -
This commit is contained in:
parent
66571ee4c8
commit
9365eb48c0
@ -1830,7 +1830,7 @@ implementation
|
||||
|
||||
include(current_procinfo.flags,pi_has_label);
|
||||
|
||||
if labsym.nonlocal then
|
||||
if assigned(labsym) and labsym.nonlocal then
|
||||
include(current_procinfo.flags,pi_has_interproclabel);
|
||||
|
||||
if assigned(left) then
|
||||
|
Loading…
Reference in New Issue
Block a user