1
0
mirror of synced 2026-01-27 12:43:21 +00:00

log_warning_noprefix -> log_warning as per review

This commit is contained in:
Eddie Hung
2019-03-14 15:29:43 +00:00
committed by Clifford Wolf
parent c7d7d8ad1b
commit eb21bf3651

View File

@@ -741,7 +741,7 @@ struct HierarchyPass : public Pass {
const std::string &value = args[++argidx];
auto r = parameters.emplace(key, value);
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;
}
continue;