Skip to content

Commit

Permalink
revert unsigned as a SystemVerilog-only keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
hirooih committed Sep 5, 2020
1 parent f0231e2 commit 54413c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsers/verilog.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ static const keywordAssoc KeywordTable [] = {
{ "tri", K_NET, { 1, 1 } },
{ "trior", K_NET, { 1, 1 } },
{ "trireg", K_NET, { 1, 1 } },
{ "unsigned", K_IGNORE, { 1, 1 } },
{ "uwire", K_NET, { 1, 1 } },
{ "wand", K_NET, { 1, 1 } },
{ "wire", K_NET, { 1, 1 } },
Expand Down Expand Up @@ -207,6 +206,7 @@ static const keywordAssoc KeywordTable [] = {
{ "type", K_IGNORE, { 1, 0 } },
{ "typedef", K_TYPEDEF, { 1, 0 } },
{ "union", K_STRUCT, { 1, 0 } },
{ "unsigned", K_IGNORE, { 1, 0 } },
{ "virtual", K_IGNORE, { 1, 0 } },
{ "var", K_REGISTER, { 1, 0 } },
{ "void", K_IGNORE, { 1, 0 } }
Expand Down

0 comments on commit 54413c0

Please sign in to comment.