From 7d7ee5d9bf94d83a0d13cd5d90d23e33d35676fe Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Mon, 7 Apr 2025 21:36:50 +1200 Subject: [PATCH] rtlil.h: Fix selection ctor ordering --- kernel/rtlil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 52e7a17e7..aa966a995 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -1183,7 +1183,7 @@ struct RTLIL::Selection // the design to select from RTLIL::Design *design = nullptr ) : - full_selection(full && !boxes), selects_boxes(boxes), complete_selection(full && boxes), current_design(design) { } + selects_boxes(boxes), complete_selection(full && boxes), full_selection(full && !boxes), current_design(design) { } // checks if the given module exists in the current design and is a // boxed module, warning the user if the current design is not set