mirror of https://github.com/YosysHQ/yosys.git
lexer doesn't seem to return TOK_REG for logic anymore
This commit is contained in:
parent
5ddf84d430
commit
cc2236d0c0
|
@ -1261,13 +1261,14 @@ enum_type: TOK_ENUM {
|
|||
|
||||
enum_base_type: int_vec param_range
|
||||
| int_atom
|
||||
| /* nothing */ { addRange(astbuf1); }
|
||||
| /* nothing */ {astbuf1->is_reg = true; addRange(astbuf1); }
|
||||
;
|
||||
|
||||
int_atom: TOK_INTEGER { addRange(astbuf1); } // probably should do byte, range [7:0] here
|
||||
int_atom: TOK_INTEGER {astbuf1->is_reg=true; addRange(astbuf1); } // probably should do byte, range [7:0] here
|
||||
;
|
||||
|
||||
int_vec: TOK_REG { astbuf1->is_reg = true; } // lexer returns this for logic|bit too
|
||||
int_vec: TOK_REG {astbuf1->is_reg = true;}
|
||||
| TOK_LOGIC {astbuf1->is_logic = true;}
|
||||
;
|
||||
|
||||
enum_name_list:
|
||||
|
|
Loading…
Reference in New Issue