summaryrefslogtreecommitdiff
path: root/passes
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-04-08 12:13:53 +0200
committerClifford Wolf <clifford@clifford.at>2015-04-08 12:13:53 +0200
commitaa0ab975b956e3b37c4d861fcf067475a28fd491 (patch)
tree31c7c4768ccd46f3aad0b05efece10003f05d315 /passes
parent8eadd8fb18eb0a0707dd5f3262adf2e811a5bc69 (diff)
Removed "techmap -share_map" (use "-map +/filename" instead)
Diffstat (limited to 'passes')
-rw-r--r--passes/techmap/techmap.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc
index ab748ed7..bc86571b 100644
--- a/passes/techmap/techmap.cc
+++ b/passes/techmap/techmap.cc
@@ -824,11 +824,6 @@ struct TechmapPass : public Pass {
log(" -map %%<design-name>\n");
log(" like -map above, but with an in-memory design instead of a file.\n");
log("\n");
- log(" -share_map filename\n");
- log(" like -map, but look for the file in the share directory (where the\n");
- log(" yosys data files are). this is mainly used internally when techmap\n");
- log(" is called from other commands.\n");
- log("\n");
log(" -extern\n");
log(" load the cell implementations as separate modules into the design\n");
log(" instead of inlining them.\n");
@@ -962,10 +957,6 @@ struct TechmapPass : public Pass {
map_files.push_back(args[++argidx]);
continue;
}
- if (args[argidx] == "-share_map" && argidx+1 < args.size()) {
- map_files.push_back(proc_share_dirname() + args[++argidx]);
- continue;
- }
if (args[argidx] == "-max_iter" && argidx+1 < args.size()) {
max_iter = atoi(args[++argidx].c_str());
continue;