aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/cost.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-11-09 10:44:23 +0100
committerClifford Wolf <clifford@clifford.at>2014-11-09 10:44:23 +0100
commitfe829bdbdc436f425e082ab1cc8c3d276f168945 (patch)
tree5d73123ffc07ec247e095c76f65bd4800f567d1b /kernel/cost.h
parentcb9e10b4624e6ba6fff215766790e3ff3b82e9a8 (diff)
downloadyosys-fe829bdbdc436f425e082ab1cc8c3d276f168945.tar.gz
yosys-fe829bdbdc436f425e082ab1cc8c3d276f168945.tar.bz2
yosys-fe829bdbdc436f425e082ab1cc8c3d276f168945.zip
Added log_warning() API
Diffstat (limited to 'kernel/cost.h')
-rw-r--r--kernel/cost.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cost.h b/kernel/cost.h
index 5e99df993..61a693b9c 100644
--- a/kernel/cost.h
+++ b/kernel/cost.h
@@ -70,7 +70,7 @@ int get_cell_cost(RTLIL::IdString type, const std::map<RTLIL::IdString, RTLIL::C
return module_cost;
}
- log("Warning: Can't determine cost of %s cell (%d parameters).\n", log_id(type), GetSize(parameters));
+ log_warning("Can't determine cost of %s cell (%d parameters).\n", log_id(type), GetSize(parameters));
return 1;
}