mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
fixes char* to string conversion issue
Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com>
This commit is contained in:
parent
d2a04cca0e
commit
33fe2e4613
|
@ -1058,7 +1058,7 @@ bool dump_cell_expr(std::ostream &f, std::string indent, RTLIL::Cell *cell)
|
||||||
f << stringf("%s" "assign ", indent.c_str());
|
f << stringf("%s" "assign ", indent.c_str());
|
||||||
dump_sigspec(f, cell->getPort(ID::Y));
|
dump_sigspec(f, cell->getPort(ID::Y));
|
||||||
f << stringf(" = ");
|
f << stringf(" = ");
|
||||||
dump_attributes(f, "", cell->attributes, ' ');
|
dump_attributes(f, "", cell->attributes, " ");
|
||||||
dump_cell_expr_port(f, cell, "A", false);
|
dump_cell_expr_port(f, cell, "A", false);
|
||||||
f << stringf(";\n");
|
f << stringf(";\n");
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue