From 8e7f29b07e0dd69aed1a863c3430bae1b1157434 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Fri, 28 Mar 2025 16:55:55 -0400 Subject: [PATCH] Fix incorrect systemc block token names --- src/verilog.y | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/verilog.y b/src/verilog.y index 543492cbe..9285444d9 100644 --- a/src/verilog.y +++ b/src/verilog.y @@ -450,12 +450,12 @@ BISONPRE_VERSION(3.7,%define api.header.include {"V3ParseBison.h"}) %token yaTABLELINE "TABLE LINE" -%token yaSCHDR "`systemc_header BLOCK" -%token yaSCINT "`systemc_ctor BLOCK" -%token yaSCIMP "`systemc_dtor BLOCK" -%token yaSCIMPH "`systemc_interface BLOCK" -%token yaSCCTOR "`systemc_implementation BLOCK" -%token yaSCDTOR "`systemc_imp_header BLOCK" +%token yaSCCTOR "`systemc_ctor block" +%token yaSCDTOR "`systemc_dtor block" +%token yaSCHDR "`systemc_header block" +%token yaSCIMP "`systemc_implementation block" +%token yaSCIMPH "`systemc_imp_header block" +%token yaSCINT "`systemc_interface block" %token yVLT_CLOCKER "clocker" %token yVLT_CLOCK_ENABLE "clock_enable"