3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 01:54:10 +00:00

verilog_backend: dump attributes on SwitchRule.

This appears to be an omission.
This commit is contained in:
whitequark 2019-07-08 15:11:29 +00:00
parent 48655dfb8b
commit 628437b01c

View file

@ -1494,6 +1494,7 @@ void dump_proc_switch(std::ostream &f, std::string indent, RTLIL::SwitchRule *sw
return;
}
dump_attributes(f, indent, sw->attributes);
f << stringf("%s" "casez (", indent.c_str());
dump_sigspec(f, sw->signal);
f << stringf(")\n");