diff options
author | gatecat <gatecat@ds0.me> | 2021-09-06 13:29:08 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-09-06 13:29:23 +0100 |
commit | d08fb255a29d8c5b51b06a71d866dc86bf0d4551 (patch) | |
tree | 1c532f2bf33f9065d0e9df7f96991453dc0f9710 /common | |
parent | fd6366f027c5e9099e555f733f3092903897374d (diff) | |
download | nextpnr-d08fb255a29d8c5b51b06a71d866dc86bf0d4551.tar.gz nextpnr-d08fb255a29d8c5b51b06a71d866dc86bf0d4551.tar.bz2 nextpnr-d08fb255a29d8c5b51b06a71d866dc86bf0d4551.zip |
router2: Fix uninitialised values
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'common')
-rw-r--r-- | common/router2.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/router2.cc b/common/router2.cc index cb8e875f..1f9196ab 100644 --- a/common/router2.cc +++ b/common/router2.cc @@ -92,7 +92,7 @@ struct Router2 int16_t x = 0, y = 0; // Visit data PipId pip_fwd, pip_bwd; - bool visited_fwd, visited_bwd; + bool visited_fwd = false, visited_bwd = false; }; Context *ctx; |