diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-26 16:16:44 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-26 16:16:44 -0700 |
commit | 5087d1c2c27c0992c12337565f026573af1c12b4 (patch) | |
tree | 6f13512da2922dbdca0bf88bd8b52b4f143cdbe5 | |
parent | ca1fac7c4758b54feda24f28c9d46bb44fbd2cb8 (diff) | |
download | yosys-5087d1c2c27c0992c12337565f026573af1c12b4.tar.gz yosys-5087d1c2c27c0992c12337565f026573af1c12b4.tar.bz2 yosys-5087d1c2c27c0992c12337565f026573af1c12b4.zip |
Restore sigmap wrapper
-rw-r--r-- | passes/techmap/muxcover.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/muxcover.cc b/passes/techmap/muxcover.cc index 61471e446..ce9d145d4 100644 --- a/passes/techmap/muxcover.cc +++ b/passes/techmap/muxcover.cc @@ -151,7 +151,7 @@ struct MuxcoverWorker return true; } char port_name[3] = {'\\', *path, 0}; - return follow_muxtree(ret_bit, tree, tree.muxes.at(bit)->getPort(port_name), path+1, false); + return follow_muxtree(ret_bit, tree, sigmap(tree.muxes.at(bit)->getPort(port_name)), path+1, false); } else { ret_bit = bit; return true; |