From 72d73fe4d07e48989f879db31a7c80e43d517b23 Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Fri, 27 Mar 2020 12:17:39 -0700 Subject: [PATCH] sta: missing sigmap --- passes/cmds/sta.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passes/cmds/sta.cc b/passes/cmds/sta.cc index a19ae8184..bf6ad8468 100644 --- a/passes/cmds/sta.cc +++ b/passes/cmds/sta.cc @@ -112,7 +112,7 @@ struct StaWorker continue; const auto &s = it->second.second; if (cell->hasPort(s.name)) { - auto &s_bit = cell->getPort(s.name)[s.offset]; + auto s_bit = sigmap(cell->getPort(s.name)[s.offset]); if (s_bit.wire) data[s_bit].fanouts.emplace_back(bit,it->second.first,s.name); }