mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #3164 from zachjs/fix-ast-warn
fix dumpAst() compilation warning
This commit is contained in:
commit
fc7d78f071
|
@ -344,7 +344,7 @@ void AstNode::dumpAst(FILE *f, std::string indent) const
|
|||
}
|
||||
if (!multirange_swapped.empty()) {
|
||||
fprintf(f, " multirange_swapped=[");
|
||||
for (auto v : multirange_swapped)
|
||||
for (bool v : multirange_swapped)
|
||||
fprintf(f, " %d", v);
|
||||
fprintf(f, " ]");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue