From b0869d521cfdd84761a398515888f7064fab65b8 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Thu, 4 Jun 2026 08:54:28 -0700 Subject: [PATCH] comment Signed-off-by: James Cherry --- verilog/VerilogParse.yy | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/verilog/VerilogParse.yy b/verilog/VerilogParse.yy index 3103c3be..c19c2ea8 100644 --- a/verilog/VerilogParse.yy +++ b/verilog/VerilogParse.yy @@ -242,13 +242,8 @@ stmt_seq: continuous_assign ; -/* specify blocks are used by some comercial tools to convey macro timing - * and other metadata. - * Their presence is not forbidden in structural verilog, this is a placeholder - * that just ignores them and allows verilog processing to proceed - * <> if someone in the future wants implement support for timing info - * via specify blocks, implement proper parsing here - */ +// Specify blocks are used by some comercial tools to convey macro timing +// and other metadata. specify_block: SPECIFY specify_stmts ENDSPECIFY { $$ = nullptr; }