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 /generic | |
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 'generic')
-rw-r--r-- | generic/arch.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/generic/arch.h b/generic/arch.h index fb4f3660..46801372 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -215,8 +215,6 @@ struct Arch : BaseCtx bool getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort, DelayInfo &delay) const; // Get the port class, also setting clockPort if applicable TimingPortClass getPortTimingClass(const CellInfo *cell, IdString port, IdString &clockPort) const; - // Return true if a cell is an IO - bool isIOCell(const CellInfo *cell) const; bool isValidBelForCell(CellInfo *cell, BelId bel) const; bool isBelLocationValid(BelId bel) const; |