We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9672e2 commit 717abc9Copy full SHA for 717abc9
passes/cmds/select.cc
@@ -760,6 +760,9 @@ static void select_stmt(RTLIL::Design *design, std::string arg)
760
if (!design->selected_active_module.empty()) {
761
arg_mod = design->selected_active_module;
762
arg_memb = arg;
763
+ } else
764
+ if (GetSize(arg) >= 2 && arg[0] >= 'a' && arg[0] <= 'z' && arg[1] == ':') {
765
+ arg_mod = "*", arg_memb = arg;
766
} else {
767
size_t pos = arg.find('/');
768
if (pos == std::string::npos) {
0 commit comments