aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/simplemap.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-04-20 12:23:49 -0700
committerEddie Hung <eddie@fpgeh.com>2019-04-20 12:23:49 -0700
commitcaec7f9d2c87e3978c51d0a4171b24cc4b363885 (patch)
tree56dfa79f4f3bad0f38165cf55978058dd7665f4c /passes/techmap/simplemap.cc
parentaf4652522fd01aaec84664e65d7fe1474c578c49 (diff)
parentf84a84e3f1a27b361c21fcd30fcf50c1a6586629 (diff)
downloadyosys-caec7f9d2c87e3978c51d0a4171b24cc4b363885.tar.gz
yosys-caec7f9d2c87e3978c51d0a4171b24cc4b363885.tar.bz2
yosys-caec7f9d2c87e3978c51d0a4171b24cc4b363885.zip
Merge remote-tracking branch 'origin/master' into xaig
Diffstat (limited to 'passes/techmap/simplemap.cc')
-rw-r--r--passes/techmap/simplemap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/simplemap.cc b/passes/techmap/simplemap.cc
index 660b60601..f3da80c66 100644
--- a/passes/techmap/simplemap.cc
+++ b/passes/techmap/simplemap.cc
@@ -599,7 +599,7 @@ struct SimplemapPass : public Pass {
simplemap_get_mappers(mappers);
for (auto mod : design->modules()) {
- if (!design->selected(mod))
+ if (!design->selected(mod) || mod->get_blackbox_attribute())
continue;
std::vector<RTLIL::Cell*> cells = mod->cells();
for (auto cell : cells) {