mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Fix bison warning for "pure-parser" option
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
This commit is contained in:
parent
b597f85b13
commit
d59da5a4e4
|
@ -142,6 +142,7 @@ static void addRange(AstNode *parent, int msb = 31, int lsb = 0, bool isSigned =
|
||||||
%}
|
%}
|
||||||
|
|
||||||
%define api.prefix {frontend_verilog_yy}
|
%define api.prefix {frontend_verilog_yy}
|
||||||
|
%define api.pure
|
||||||
|
|
||||||
/* The union is defined in the header, so we need to provide all the
|
/* The union is defined in the header, so we need to provide all the
|
||||||
* includes it requires
|
* includes it requires
|
||||||
|
@ -220,7 +221,6 @@ static void addRange(AstNode *parent, int msb = 31, int lsb = 0, bool isSigned =
|
||||||
|
|
||||||
%debug
|
%debug
|
||||||
%locations
|
%locations
|
||||||
%pure-parser
|
|
||||||
|
|
||||||
%%
|
%%
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue