Skip to content

Commit 612be38

Browse files
committed
Work around for older Yosys
1 parent 533aa9b commit 612be38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/slang_frontend.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3518,7 +3518,7 @@ struct SlangFrontend : Frontend {
35183518
}
35193519

35203520
if (!settings.no_proc.value_or(false)) {
3521-
RTLIL::Selection emitted_modules = RTLIL::Selection::EmptySelection(design);
3521+
RTLIL::Selection emitted_modules(/* full= */ false);
35223522
for (auto name : emitted_module_names)
35233523
emitted_modules.selected_modules.insert(name);
35243524
design->push_selection(emitted_modules);

0 commit comments

Comments
 (0)