mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-17 07:01:31 +00:00
Make log_experimental() just take an std::string, since it doesn't need to be varargs.
This commit is contained in:
parent
25cba6181e
commit
2a2c586e2c
3 changed files with 7 additions and 13 deletions
|
@ -265,7 +265,7 @@ void Pass::call(RTLIL::Design *design, std::vector<std::string> args)
|
|||
log_cmd_error("No such command: %s (type 'help' for a command overview)\n", args[0].c_str());
|
||||
|
||||
if (pass_register[args[0]]->experimental_flag)
|
||||
log_experimental("%s", args[0].c_str());
|
||||
log_experimental(args[0]);
|
||||
|
||||
size_t orig_sel_stack_pos = design->selection_stack.size();
|
||||
auto state = pass_register[args[0]]->pre_execute();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue