From: Eddie Hung Date: Fri, 14 Jun 2019 20:31:18 +0000 (-0700) Subject: Remove redundant condition X-Git-Tag: working-ls180~1237^2~101 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=46e69ee934a6a954b73bb7a5669b6ee6d3047247;p=yosys.git Remove redundant condition --- diff --git a/backends/aiger/xaiger.cc b/backends/aiger/xaiger.cc index 1d502a748..4d8bb7f00 100644 --- a/backends/aiger/xaiger.cc +++ b/backends/aiger/xaiger.cc @@ -329,7 +329,7 @@ struct XAigerWriter //log_warning("Unsupported cell type: %s (%s)\n", log_id(cell->type), log_id(cell)); } - if (abc_box_seen && !holes_mode) { + if (abc_box_seen) { for (auto &it : bit_users) if (bit_drivers.count(it.first)) for (auto driver_cell : bit_drivers.at(it.first))