diff options
author | David Shah <davey1576@gmail.com> | 2018-08-08 17:06:59 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-08-08 17:06:59 +0200 |
commit | 433ad6462e401e722fbdd033c2b4b1c9a3537947 (patch) | |
tree | 8552b1ced866001c4d775f8b2fc24b1aeb0c6a59 /ice40 | |
parent | 936b52eafc6da47fdd9c5e56d2e5ae667f000944 (diff) | |
download | nextpnr-433ad6462e401e722fbdd033c2b4b1c9a3537947.tar.gz nextpnr-433ad6462e401e722fbdd033c2b4b1c9a3537947.tar.bz2 nextpnr-433ad6462e401e722fbdd033c2b4b1c9a3537947.zip |
Arch API: Removing Arch::isIOCell
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/arch.cc | 2 | ||||
-rw-r--r-- | ice40/arch.h | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc index 3d31f980..888a0dee 100644 --- a/ice40/arch.cc +++ b/ice40/arch.cc @@ -968,8 +968,6 @@ bool Arch::isGlobalNet(const NetInfo *net) const return net->driver.cell != nullptr && net->driver.port == id_glb_buf_out; } -bool Arch::isIOCell(const CellInfo *cell) const { return cell->type == id_sb_io; } - // Assign arch arg info void Arch::assignArchInfo() { diff --git a/ice40/arch.h b/ice40/arch.h index 7cc8495d..cdac1e96 100644 --- a/ice40/arch.h +++ b/ice40/arch.h @@ -792,8 +792,6 @@ struct Arch : BaseCtx TimingPortClass getPortTimingClass(const CellInfo *cell, IdString port, IdString &clockDomain) const; // Return true if a port is a net bool isGlobalNet(const NetInfo *net) const; - // Return true if a cell is an IO - bool isIOCell(const CellInfo *cell) const; // ------------------------------------------------- |