mirror of https://github.com/YosysHQ/yosys.git
log_warning_noprefix -> log_warning as per review
This commit is contained in:
parent
c7d7d8ad1b
commit
eb21bf3651
|
@ -741,7 +741,7 @@ struct HierarchyPass : public Pass {
|
||||||
const std::string &value = args[++argidx];
|
const std::string &value = args[++argidx];
|
||||||
auto r = parameters.emplace(key, value);
|
auto r = parameters.emplace(key, value);
|
||||||
if (!r.second) {
|
if (!r.second) {
|
||||||
log_warning_noprefix("-chparam %s already specified: overwriting.\n", key.c_str());
|
log_warning("-chparam %s already specified: overwriting.\n", key.c_str());
|
||||||
r.first->second = value;
|
r.first->second = value;
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue