mirror of
https://github.com/YosysHQ/yosys
synced 2025-10-06 07:54:00 +00:00
Make log()
use the FmtString
infrastructure.
Now `log()` supports `std::string`. We have to fix a few places where the format parameter was not a compile time constant. This is mostly trivial.
This commit is contained in:
parent
3f69a768f4
commit
d34ac0c87d
10 changed files with 74 additions and 45 deletions
|
@ -620,7 +620,7 @@ static void run_eval_test(RTLIL::Design *design, bool verbose, bool nosat, std::
|
|||
|
||||
for (int i = 0; i < 64; i++)
|
||||
{
|
||||
log(verbose ? "\n" : ".");
|
||||
log("%s", verbose ? "\n" : ".");
|
||||
gold_ce.clear();
|
||||
gate_ce.clear();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue