From 3df29085c8ce89092fee71adfff3a3c8291f8f30 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Thu, 2 Mar 2023 07:50:16 -0500 Subject: [PATCH] Fix end label fileline reporting. --- src/verilog.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/verilog.y b/src/verilog.y index 6232f9091..f51f90dad 100644 --- a/src/verilog.y +++ b/src/verilog.y @@ -6608,7 +6608,7 @@ class_declaration: // ==IEEE: part of class_declaration $1->addExtendsp($4); $1->addMembersp($7); SYMP->popScope($$); - GRAMMARP->endLabel($7, $1, $9); } + GRAMMARP->endLabel($9, $1, $9); } ; classFront: // IEEE: part of class_declaration