aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/techmap.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-05-29 10:26:55 +0200
committerClifford Wolf <clifford@clifford.at>2014-05-29 10:26:55 +0200
commit61883b30f3ea0cd22d08519bc93c73f6e193bd65 (patch)
treec513abc708a19889f561d5df2875b6bd53e92fd9 /passes/techmap/techmap.cc
parent68c059565a3b75808e74eb481f14cb7f0c907f37 (diff)
parent278085fa01a9013051fbec842314cb6b5642e9bb (diff)
downloadyosys-61883b30f3ea0cd22d08519bc93c73f6e193bd65.tar.gz
yosys-61883b30f3ea0cd22d08519bc93c73f6e193bd65.tar.bz2
yosys-61883b30f3ea0cd22d08519bc93c73f6e193bd65.zip
Merge pull request #36 from hansiglaser/master
Various changes merged
Diffstat (limited to 'passes/techmap/techmap.cc')
-rw-r--r--passes/techmap/techmap.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc
index 69ffb9230..4c5a0febc 100644
--- a/passes/techmap/techmap.cc
+++ b/passes/techmap/techmap.cc
@@ -106,8 +106,12 @@ struct TechmapWorker
if (tpl->memories.size() != 0)
log_error("Technology map yielded memories -> this is not supported.\n");
- if (tpl->processes.size() != 0)
+ if (tpl->processes.size() != 0) {
+ log("Technology map yielded processes:\n");
+ for (auto &it : tpl->processes)
+ log(" %s",RTLIL::id2cstr(it.first));
log_error("Technology map yielded processes -> this is not supported.\n");
+ }
// erase from namespace first for _TECHMAP_REPLACE_ to work
module->cells.erase(cell->name);