3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-25 01:55:33 +00:00

verilog: ignore ranges too without -specify

This commit is contained in:
Eddie Hung 2020-02-13 17:58:43 -08:00
parent 6b58c1820c
commit d20c1dac73
2 changed files with 9 additions and 1 deletions

View file

@ -1138,7 +1138,8 @@ ignspec_expr:
};
ignspec_id:
TOK_ID { delete $1; };
TOK_ID { delete $1; }
range_or_multirange { delete $3; };
/**********************************************************************/