diff --git a/docs/CONTRIBUTORS b/docs/CONTRIBUTORS index 1a86f4570..898bd3ba7 100644 --- a/docs/CONTRIBUTORS +++ b/docs/CONTRIBUTORS @@ -88,6 +88,7 @@ Sergi Granell Stefan Wallentowitz Stephen Henry Steven Hugg +Teng Huang Tim Snyder Tobias Rosenkranz Tobias Wölfel diff --git a/src/verilog.y b/src/verilog.y index 8cca67a2c..7d6e44d16 100644 --- a/src/verilog.y +++ b/src/verilog.y @@ -4117,7 +4117,7 @@ array_methodNoRoot: ; array_methodWith: - array_methodNoRoot { $$ = $1; } + array_methodNoRoot parenE { $$ = $1; } | array_methodNoRoot parenE yWITH__PAREN '(' expr ')' { $$ = new AstWithParse($3, false, $1, $5); } | array_methodNoRoot '(' expr ')' yWITH__PAREN '(' expr ')' diff --git a/test_regress/t/t_assoc_method.v b/test_regress/t/t_assoc_method.v index 684e90c68..e4d87f611 100644 --- a/test_regress/t/t_assoc_method.v +++ b/test_regress/t/t_assoc_method.v @@ -119,6 +119,26 @@ module t (/*AUTOARG*/); i = qe.xor; `checkh(i, 32'b0); + i = q.and(); + `checkh(i, 32'b1000); + i = q.and() with (item + 1); + `checkh(i, 32'b1001); + i = q.or(); + `checkh(i, 32'b1110); + i = q.or() with (item + 1); + `checkh(i, 32'b1111); + i = q.xor(); + `checkh(i, 32'b0110); + i = q.xor() with (item + 1); + `checkh(i, 32'b0110); + + i = qe.and(); + `checkh(i, 32'b0); + i = qe.or(); + `checkh(i, 32'b0); + i = qe.xor(); + `checkh(i, 32'b0); + $write("*-* All Finished *-*\n"); $finish; end