Skip to content

Commit

Permalink
Verilog: grammar for binary ^~ xnor
Browse files Browse the repository at this point in the history
  • Loading branch information
kroening committed Nov 16, 2024
1 parent 6360d22 commit 01eca40
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/verilog/parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -3848,6 +3848,8 @@ expression:
{ init($$, ID_bitxor); mto($$, $1); mto($$, $3); }
| expression TOK_TILDECARET expression
{ init($$, ID_bitxnor); mto($$, $1); mto($$, $3); }
| expression TOK_CARETTILDE expression
{ init($$, ID_bitxnor); mto($$, $1); mto($$, $3); }
| expression TOK_LESSLESS expression
{ init($$, ID_shl); mto($$, $1); mto($$, $3); }
| expression TOK_LESSLESSLESS expression
Expand Down

0 comments on commit 01eca40

Please sign in to comment.