diff --git a/kernel/rtlil.h b/kernel/rtlil.h index f3dc3af68..354823e3b 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -1061,6 +1061,13 @@ struct RTLIL::Design return selected_member(module->name, member->name); } + template void select(T1 *module) { + if (selection_stack.size() > 0) { + RTLIL::Selection &sel = selection_stack.back(); + sel.select(module); + } + } + template void select(T1 *module, T2 *member) { if (selection_stack.size() > 0) { RTLIL::Selection &sel = selection_stack.back();