mirror of https://github.com/YosysHQ/yosys.git
rtlil: remove dotted identifiers.
No one knows where they came from and they never did anything useful.
This commit is contained in:
parent
5b35d953f7
commit
015b476e56
|
@ -86,7 +86,6 @@ USING_YOSYS_NAMESPACE
|
||||||
|
|
||||||
"\\"[^ \t\r\n]+ { rtlil_frontend_yylval.string = strdup(yytext); return TOK_ID; }
|
"\\"[^ \t\r\n]+ { rtlil_frontend_yylval.string = strdup(yytext); return TOK_ID; }
|
||||||
"$"[^ \t\r\n]+ { rtlil_frontend_yylval.string = strdup(yytext); return TOK_ID; }
|
"$"[^ \t\r\n]+ { rtlil_frontend_yylval.string = strdup(yytext); return TOK_ID; }
|
||||||
"."[0-9]+ { rtlil_frontend_yylval.string = strdup(yytext); return TOK_ID; }
|
|
||||||
|
|
||||||
[0-9]+'[01xzm-]* { rtlil_frontend_yylval.string = strdup(yytext); return TOK_VALUE; }
|
[0-9]+'[01xzm-]* { rtlil_frontend_yylval.string = strdup(yytext); return TOK_VALUE; }
|
||||||
-?[0-9]+ {
|
-?[0-9]+ {
|
||||||
|
|
Loading…
Reference in New Issue