mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-23 11:37:55 +00:00
Merge ec3f384dca
into 262b00d5e5
This commit is contained in:
commit
15bf563db9
6 changed files with 28 additions and 39 deletions
|
@ -173,7 +173,7 @@ struct ExampleDtPass : public Pass
|
|||
node.set_function(ID($$undriven));
|
||||
|
||||
} else {
|
||||
log_error("unhandled drivespec: %s\n", log_signal(chunk));
|
||||
log_error("unhandled drivespec: %s\n", log_signal(chunk).c_str());
|
||||
log_abort();
|
||||
}
|
||||
} else {
|
||||
|
@ -243,7 +243,7 @@ struct ExampleDtPass : public Pass
|
|||
log(")\n");
|
||||
if (ref.has_sparse_attr())
|
||||
log("// wire %s\n", log_id(ref.sparse_attr()));
|
||||
log("// was #%d %s\n", ref.attr(), log_signal(queue[ref.attr()]));
|
||||
log("// was #%d %s\n", ref.attr(), log_signal(queue[ref.attr()]).c_str());
|
||||
}
|
||||
|
||||
for (auto const &key : compute_graph.keys())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue