From: Eddie Hung Date: Thu, 9 Apr 2020 21:31:59 +0000 (-0700) Subject: techmap: fix error message X-Git-Tag: working-ls180~657 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=843201ec96ed7c04a1fc5bb1c5b7558f018573a3;p=yosys.git techmap: fix error message --- diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc index 518afa1a7..a554be257 100644 --- a/passes/techmap/techmap.cc +++ b/passes/techmap/techmap.cc @@ -1282,7 +1282,7 @@ struct TechmapPass : public Pass { if (fn.compare(0, 1, "%") == 0) { if (!saved_designs.count(fn.substr(1))) { delete map; - log_cmd_error("Can't saved design `%s'.\n", fn.c_str()+1); + log_cmd_error("Can't open saved design `%s'.\n", fn.c_str()+1); } for (auto mod : saved_designs.at(fn.substr(1))->modules()) if (!map->has(mod->name))