diff options
author | whitequark <whitequark@whitequark.org> | 2020-11-25 16:47:20 +0000 |
---|---|---|
committer | whitequark <whitequark@whitequark.org> | 2020-11-25 16:47:20 +0000 |
commit | 015b476e56b6bc05acdf9055284e633c1cce2491 (patch) | |
tree | 3f035b5d68bbebb81faa44d4ff8fd1c915b52a36 /frontends/rtlil | |
parent | 5b35d953f749beafeceecc67862419221e91fe84 (diff) | |
download | yosys-015b476e56b6bc05acdf9055284e633c1cce2491.tar.gz yosys-015b476e56b6bc05acdf9055284e633c1cce2491.tar.bz2 yosys-015b476e56b6bc05acdf9055284e633c1cce2491.zip |
rtlil: remove dotted identifiers.
No one knows where they came from and they never did anything useful.
Diffstat (limited to 'frontends/rtlil')
-rw-r--r-- | frontends/rtlil/rtlil_lexer.l | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/frontends/rtlil/rtlil_lexer.l b/frontends/rtlil/rtlil_lexer.l index 295455f53..beef220f6 100644 --- a/frontends/rtlil/rtlil_lexer.l +++ b/frontends/rtlil/rtlil_lexer.l @@ -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; } -"."[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]+ { |