From 7dafd4da58fd3dcbd55e0e4c8489958b9ad6b837 Mon Sep 17 00:00:00 2001 From: gatecat Date: Mon, 22 May 2023 09:44:38 +0200 Subject: [PATCH] mistral: Fix uninitialised comb_out for plain LUTs Signed-off-by: gatecat --- mistral/lab.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/mistral/lab.cc b/mistral/lab.cc index 8bcde3e3..692197fd 100644 --- a/mistral/lab.cc +++ b/mistral/lab.cc @@ -319,6 +319,7 @@ void Arch::assign_comb_info(CellInfo *cell) const } } else { + cell->combInfo.comb_out = cell->getPort(id_Q); cell->combInfo.lut_input_count = 0; switch (cell->type.index) { case ID_MISTRAL_ALUT6: