aboutsummaryrefslogtreecommitdiffstats
path: root/dummy
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-23 15:28:09 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-23 15:28:09 +0200
commita1681560a3c46a0b785c33eddd0038f4fd662675 (patch)
treea413be3374a3fb9bd4cdbd3f10bc970158276810 /dummy
parent04db674b3598a3b124bb7052fa40893111107041 (diff)
downloadnextpnr-a1681560a3c46a0b785c33eddd0038f4fd662675.tar.gz
nextpnr-a1681560a3c46a0b785c33eddd0038f4fd662675.tar.bz2
nextpnr-a1681560a3c46a0b785c33eddd0038f4fd662675.zip
Updates from clangformat
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'dummy')
-rw-r--r--dummy/arch.cc13
-rw-r--r--dummy/arch.h3
2 files changed, 4 insertions, 12 deletions
diff --git a/dummy/arch.cc b/dummy/arch.cc
index 4adff2ca..afd1d638 100644
--- a/dummy/arch.cc
+++ b/dummy/arch.cc
@@ -181,20 +181,13 @@ std::vector<GraphicElement> Arch::getPipGraphics(PipId pip) const
// ---------------------------------------------------------------
-bool Arch::getCellDelay(const CellInfo *cell, IdString fromPort,
- IdString toPort, delay_t &delay) const
+bool Arch::getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort, delay_t &delay) const
{
return false;
}
-IdString Arch::getPortClock(const CellInfo *cell, IdString port) const
-{
- return IdString();
-}
+IdString Arch::getPortClock(const CellInfo *cell, IdString port) const { return IdString(); }
-bool Arch::isClockPort(const CellInfo *cell, IdString port) const
-{
- return false;
-}
+bool Arch::isClockPort(const CellInfo *cell, IdString port) const { return false; }
NEXTPNR_NAMESPACE_END
diff --git a/dummy/arch.h b/dummy/arch.h
index 2a778689..56d90d52 100644
--- a/dummy/arch.h
+++ b/dummy/arch.h
@@ -144,8 +144,7 @@ struct Arch : BaseCtx
std::unordered_set<WireId> wireGraphicsReload;
std::unordered_set<PipId> pipGraphicsReload;
- bool getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort,
- delay_t &delay) const;
+ bool getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort, delay_t &delay) const;
IdString getPortClock(const CellInfo *cell, IdString port) const;
bool isClockPort(const CellInfo *cell, IdString port) const;
};