diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-04-09 14:31:59 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-04-14 08:17:02 -0700 |
commit | 843201ec96ed7c04a1fc5bb1c5b7558f018573a3 (patch) | |
tree | 6428348babae87f094a42e710d82d31683d8be81 /passes/techmap | |
parent | d8f2a1fda0876f78a85cb5e1674b6ada8a8726f2 (diff) | |
download | yosys-843201ec96ed7c04a1fc5bb1c5b7558f018573a3.tar.gz yosys-843201ec96ed7c04a1fc5bb1c5b7558f018573a3.tar.bz2 yosys-843201ec96ed7c04a1fc5bb1c5b7558f018573a3.zip |
techmap: fix error message
Diffstat (limited to 'passes/techmap')
-rw-r--r-- | passes/techmap/techmap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |