aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-21 16:25:25 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-21 16:25:25 +0200
commitfcfb85e9dc7cc4a858c938692a8612cef3c9538b (patch)
tree2e10535581af4911139c40be5646dc60a0c2700e /common
parent4fefdbd57c52d6373456bd379e3e54df770e1945 (diff)
downloadnextpnr-fcfb85e9dc7cc4a858c938692a8612cef3c9538b.tar.gz
nextpnr-fcfb85e9dc7cc4a858c938692a8612cef3c9538b.tar.bz2
nextpnr-fcfb85e9dc7cc4a858c938692a8612cef3c9538b.zip
Zero-initialize PortRef budgets
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common')
-rw-r--r--common/nextpnr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h
index e52f72c2..1cf0cbbb 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -208,7 +208,7 @@ struct PortRef
{
CellInfo *cell = nullptr;
IdString port;
- delay_t budget;
+ delay_t budget = 0;
};
struct NetInfo