diff options
author | Johann Glaser <Johann.Glaser@gmx.at> | 2014-05-26 17:13:41 +0200 |
---|---|---|
committer | Johann Glaser <Johann.Glaser@gmx.at> | 2014-05-26 17:13:41 +0200 |
commit | 684c85902d259a0db3ac5271b540549e98646306 (patch) | |
tree | 44a3c1e73d859d66e0f639e66bdafaf4b1f94ef1 /passes/techmap | |
parent | 68c059565a3b75808e74eb481f14cb7f0c907f37 (diff) | |
download | yosys-684c85902d259a0db3ac5271b540549e98646306.tar.gz yosys-684c85902d259a0db3ac5271b540549e98646306.tar.bz2 yosys-684c85902d259a0db3ac5271b540549e98646306.zip |
be more verbose when techmap yielded processes
Diffstat (limited to 'passes/techmap')
-rw-r--r-- | passes/techmap/techmap.cc | 6 |
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); |