summaryrefslogtreecommitdiff
path: root/compiler/pdecl.pas
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/pdecl.pas')
-rw-r--r--compiler/pdecl.pas5
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/pdecl.pas b/compiler/pdecl.pas
index 75229b5872..ca11e118a4 100644
--- a/compiler/pdecl.pas
+++ b/compiler/pdecl.pas
@@ -250,11 +250,10 @@ implementation
consume(_ID)
else
begin
- objectlibrary.getlabel(hl);
if token=_ID then
- symtablestack.insert(tlabelsym.create(orgpattern,hl))
+ symtablestack.insert(tlabelsym.create(orgpattern))
else
- symtablestack.insert(tlabelsym.create(pattern,hl));
+ symtablestack.insert(tlabelsym.create(pattern));
consume(token);
end;
if token<>_SEMICOLON then consume(_COMMA);