From: Alberto Gonzalez Date: Wed, 1 Apr 2020 06:53:28 +0000 (+0000) Subject: Update `RTLIL::id2cstr()` usage to `log_id`. X-Git-Tag: working-ls180~713^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c23c2c59c141e97cdcdad768c7f112eb163b925f;p=yosys.git Update `RTLIL::id2cstr()` usage to `log_id`. --- diff --git a/backends/smt2/smt2.cc b/backends/smt2/smt2.cc index 628765831..eb4826051 100644 --- a/backends/smt2/smt2.cc +++ b/backends/smt2/smt2.cc @@ -1523,12 +1523,12 @@ struct Smt2Backend : public Backend { for (auto &dep : it.second) if (module_deps.count(dep) > 0) goto not_ready_yet; - // log("Next in topological sort: %s\n", RTLIL::id2cstr(it.first->name)); + // log("Next in topological sort: %s\n", log_id(it.first->name)); sorted_modules.push_back(it.first); not_ready_yet:; } if (sorted_modules_idx == sorted_modules.size()) - log_error("Cyclic dependency between modules found! Cycle includes module %s.\n", RTLIL::id2cstr(module_deps.begin()->first->name)); + log_error("Cyclic dependency between modules found! Cycle includes module %s.\n", log_id(module_deps.begin()->first->name)); while (sorted_modules_idx < sorted_modules.size()) module_deps.erase(sorted_modules.at(sorted_modules_idx++)); }