aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/techmap.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-04-20 11:10:05 +0200
committerClifford Wolf <clifford@clifford.at>2019-04-20 11:10:05 +0200
commitb7445ef3871b38360440d5c83dbac45c96b67277 (patch)
tree76818d99c1633a78b78b2881656f40f9393f82b7 /passes/techmap/techmap.cc
parent5b915f01539c993466e83593ee8ae69b45360b81 (diff)
downloadyosys-b7445ef3871b38360440d5c83dbac45c96b67277.tar.gz
yosys-b7445ef3871b38360440d5c83dbac45c96b67277.tar.bz2
yosys-b7445ef3871b38360440d5c83dbac45c96b67277.zip
Check blackbox attribute in techmap/simplemap
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'passes/techmap/techmap.cc')
-rw-r--r--passes/techmap/techmap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc
index 82c815e2e..416bf4f1c 100644
--- a/passes/techmap/techmap.cc
+++ b/passes/techmap/techmap.cc
@@ -385,7 +385,7 @@ struct TechmapWorker
{
std::string mapmsg_prefix = in_recursion ? "Recursively mapping" : "Mapping";
- if (!design->selected(module))
+ if (!design->selected(module) || module->get_blackbox_attribute())
return false;
bool log_continue = false;