diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-07-22 10:59:21 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-07-22 10:59:21 +0200 |
commit | 62b66e02085371c456dee95dc08d2cd41351c91f (patch) | |
tree | 0c0abbc804421dbb2ef8f80ec722e1976a4ba0d6 /ecp5 | |
parent | c6e4ad322745b478f0f289f4cc5f3668e05700ac (diff) | |
download | nextpnr-62b66e02085371c456dee95dc08d2cd41351c91f.tar.gz nextpnr-62b66e02085371c456dee95dc08d2cd41351c91f.tar.bz2 nextpnr-62b66e02085371c456dee95dc08d2cd41351c91f.zip |
Rename getWireBelPin to getBelPinWire
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'ecp5')
-rw-r--r-- | ecp5/arch.cc | 2 | ||||
-rw-r--r-- | ecp5/arch.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc index 1510a27f..f6ee0711 100644 --- a/ecp5/arch.cc +++ b/ecp5/arch.cc @@ -206,7 +206,7 @@ BelRange Arch::getBelsAtSameTile(BelId bel) const return br; } -WireId Arch::getWireBelPin(BelId bel, PortPin pin) const +WireId Arch::getBelPinWire(BelId bel, PortPin pin) const { WireId ret; diff --git a/ecp5/arch.h b/ecp5/arch.h index bf36ef2f..234773e3 100644 --- a/ecp5/arch.h +++ b/ecp5/arch.h @@ -484,7 +484,7 @@ struct Arch : BaseCtx return locInfo(bel)->bel_data[bel.index].type; } - WireId getWireBelPin(BelId bel, PortPin pin) const; + WireId getBelPinWire(BelId bel, PortPin pin) const; BelPin getBelPinUphill(WireId wire) const { |