aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5
diff options
context:
space:
mode:
authorEddie Hung <e.hung@imperial.ac.uk>2018-07-25 23:02:31 -0700
committerEddie Hung <e.hung@imperial.ac.uk>2018-07-25 23:02:31 -0700
commit749dae4ae5b2b719237af5db28e98ff671bae265 (patch)
tree619173826a251ee5f1dbb3de456e79c45c682732 /ecp5
parente5d3821955cebfb2f3b2a10f97f2eea0dc9ecec3 (diff)
downloadnextpnr-749dae4ae5b2b719237af5db28e98ff671bae265.tar.gz
nextpnr-749dae4ae5b2b719237af5db28e98ff671bae265.tar.bz2
nextpnr-749dae4ae5b2b719237af5db28e98ff671bae265.zip
Remove Arch::getBudgetOverride()
Diffstat (limited to 'ecp5')
-rw-r--r--ecp5/arch.cc2
-rw-r--r--ecp5/arch.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc
index 79f65562..55fe5704 100644
--- a/ecp5/arch.cc
+++ b/ecp5/arch.cc
@@ -413,8 +413,6 @@ delay_t Arch::estimateDelay(WireId src, WireId dst) const
return 200 * (abs(src.location.x - dst.location.x) + abs(src.location.y - dst.location.y));
}
-delay_t Arch::getBudgetOverride(const PortRef &pr, delay_t v) const { return v; }
-
// -----------------------------------------------------------------------
bool Arch::place() { return placer1(getCtx()); }
diff --git a/ecp5/arch.h b/ecp5/arch.h
index 1927e55a..b5f3d817 100644
--- a/ecp5/arch.h
+++ b/ecp5/arch.h
@@ -776,7 +776,6 @@ struct Arch : BaseCtx
delay_t getRipupDelayPenalty() const { return 200; }
float getDelayNS(delay_t v) const { return v * 0.001; }
uint32_t getDelayChecksum(delay_t v) const { return v; }
- delay_t getBudgetOverride(const PortRef &pr, delay_t v) const;
// -------------------------------------------------