From b4227f586c59ca959d1bfe0d01c4c04b601fa30f Mon Sep 17 00:00:00 2001 From: "D. Shah" Date: Thu, 4 Feb 2021 12:07:11 +0000 Subject: Rename ArchBase to BaseArch for consistency with BaseCtx Signed-off-by: D. Shah --- ecp5/arch.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ecp5/arch.h') diff --git a/ecp5/arch.h b/ecp5/arch.h index 0d93a7a0..15520c18 100644 --- a/ecp5/arch.h +++ b/ecp5/arch.h @@ -465,7 +465,7 @@ struct ArchRanges using BucketBelRange = const std::vector &; }; -struct Arch : ArchBase +struct Arch : BaseArch { const ChipInfoPOD *chip_info; const PackageInfoPOD *package_info; @@ -654,7 +654,7 @@ struct Arch : ArchBase if (pip != PipId()) { wire_fanout[getPipSrcWire(pip)]--; } - ArchBase::unbindWire(wire); + BaseArch::unbindWire(wire); } DelayInfo getWireDelay(WireId wire) const override @@ -703,13 +703,13 @@ struct Arch : ArchBase void bindPip(PipId pip, NetInfo *net, PlaceStrength strength) override { wire_fanout[getPipSrcWire(pip)]++; - ArchBase::bindPip(pip, net, strength); + BaseArch::bindPip(pip, net, strength); } void unbindPip(PipId pip) override { wire_fanout[getPipSrcWire(pip)]--; - ArchBase::unbindPip(pip); + BaseArch::unbindPip(pip); } AllPipRange getPips() const override -- cgit v1.2.3