aboutsummaryrefslogtreecommitdiffstats
path: root/passes/hierarchy
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-03-14 15:29:43 +0000
committerClifford Wolf <clifford@clifford.at>2019-05-03 20:53:25 +0200
commiteb21bf36513151a6df434cf277be0df70337356a (patch)
tree86e2b7d976219a1ac38e04a12eadc543580ea8ff /passes/hierarchy
parentc7d7d8ad1bc5cf7fb8987a2249e525a6dfa38976 (diff)
downloadyosys-eb21bf36513151a6df434cf277be0df70337356a.tar.gz
yosys-eb21bf36513151a6df434cf277be0df70337356a.tar.bz2
yosys-eb21bf36513151a6df434cf277be0df70337356a.zip
log_warning_noprefix -> log_warning as per review
Diffstat (limited to 'passes/hierarchy')
-rw-r--r--passes/hierarchy/hierarchy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/hierarchy/hierarchy.cc b/passes/hierarchy/hierarchy.cc
index 483b386e5..71dcfb194 100644
--- a/passes/hierarchy/hierarchy.cc
+++ b/passes/hierarchy/hierarchy.cc
@@ -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;