From e55e81bcd05c68744d81d417d677cdc6155f6fd7 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 11 Mar 2023 10:53:10 -0500 Subject: [PATCH] Parse sequence 'local input', still unsupported. --- src/verilog.y | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/verilog.y b/src/verilog.y index e14e27207..b57bae87f 100644 --- a/src/verilog.y +++ b/src/verilog.y @@ -5848,9 +5848,14 @@ property_port_itemAssignment: // IEEE: part of property_port_item/sequen ; property_port_itemDirE: - /* empty */ { GRAMMARP->m_pinAnsi = true; VARIO(INPUT); } - //UNSUP|yLOCAL__ETC { GRAMMARP->m_pinAnsi = true; VARIO(INPUT); } - //UNSUP|yLOCAL__ETC yINPUT { GRAMMARP->m_pinAnsi = true; VARIO(INPUT); } + /* empty */ + { GRAMMARP->m_pinAnsi = true; VARIO(INPUT); } + | yLOCAL__ETC + { GRAMMARP->m_pinAnsi = true; VARIO(INPUT); + BBUNSUP($1, "Unsupported: property port 'local'"); } + | yLOCAL__ETC yINPUT + { GRAMMARP->m_pinAnsi = true; VARIO(INPUT); + BBUNSUP($1, "Unsupported: property port 'local'"); } ; property_declarationBody: // IEEE: part of property_declaration