mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-21 21:33:40 +00:00
sv: fix some edge cases for unbased unsized literals
- Fix explicit size cast of unbased unsized literals - Fix unbased unsized literal bound directly to port - Output `is_unsized` flag in `dumpAst`
This commit is contained in:
parent
d245e2bae5
commit
b1a8e73a60
4 changed files with 70 additions and 1 deletions
|
@ -317,6 +317,8 @@ void AstNode::dumpAst(FILE *f, std::string indent) const
|
|||
fprintf(f, " reg");
|
||||
if (is_signed)
|
||||
fprintf(f, " signed");
|
||||
if (is_unsized)
|
||||
fprintf(f, " unsized");
|
||||
if (basic_prep)
|
||||
fprintf(f, " basic_prep");
|
||||
if (lookahead)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue