3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-23 11:37:55 +00:00
This commit is contained in:
Robert O'Callahan 2025-07-31 13:22:05 +02:00 committed by GitHub
commit 15bf563db9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 28 additions and 39 deletions

View file

@ -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())