Skip to content

Commit

Permalink
log_warning_noprefix -> log_warning as per review
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiehung committed Mar 14, 2019
1 parent d55b0e3 commit 514dda5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion passes/hierarchy/hierarchy.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 514dda5

Please sign in to comment.