From: Miodrag Milanovic Date: Mon, 31 Jan 2022 11:00:15 +0000 (+0100) Subject: Cleanup X-Git-Tag: yosys-0.14~2^2~10 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=26de52fa094f90d5ce7a2766df5a53e6188b4d13;p=yosys.git Cleanup --- diff --git a/kernel/fstdata.cc b/kernel/fstdata.cc index a7a2c80f7..17498c4ee 100644 --- a/kernel/fstdata.cc +++ b/kernel/fstdata.cc @@ -43,7 +43,6 @@ FstData::FstData(std::string filename) : ctx(nullptr) } } for (int i=0;i0)timescale_str += " "; timescale_str += g_units[unit]; extractVarNames(); } diff --git a/passes/sat/sim.cc b/passes/sat/sim.cc index e6de1b134..f08a3eb1f 100644 --- a/passes/sat/sim.cc +++ b/passes/sat/sim.cc @@ -1021,7 +1021,7 @@ struct SimWorker : SimShared edges.erase(edges.begin() + (numcycles*2), edges.end()); if ((startCount == stopCount) && writeback) { - log("Update initial state with values from %zu\n",startCount); + log("Update initial state with values from [%zu%s]\n", startCount, fst->getTimescaleString()); if (edges.empty()) edges.push_back(startCount); fst->reconstructAllAtTimes(edges); @@ -1035,7 +1035,7 @@ struct SimWorker : SimShared bool initial = false; int cycle = 0; for(auto &time : edges) { - log("Co-simulating cycle %d [%zu %s].\n", cycle+1, time, fst->getTimescaleString()); + log("Co-simulating cycle %d [%zu%s].\n", cycle+1, time, fst->getTimescaleString()); for(auto &item : inputs) { std::string v = fst->valueAt(item.second, time); top->set_state(item.first, Const::from_string(v));