mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Fix a syntax bug in ilang backend related to process case statements
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
53b28b3f01
commit
04e920337b
|
@ -204,7 +204,7 @@ void ILANG_BACKEND::dump_proc_switch(std::ostream &f, std::string indent, const
|
||||||
f << stringf("%s case ", indent.c_str());
|
f << stringf("%s case ", indent.c_str());
|
||||||
for (size_t i = 0; i < (*it)->compare.size(); i++) {
|
for (size_t i = 0; i < (*it)->compare.size(); i++) {
|
||||||
if (i > 0)
|
if (i > 0)
|
||||||
f << stringf(", ");
|
f << stringf(" , ");
|
||||||
dump_sigspec(f, (*it)->compare[i]);
|
dump_sigspec(f, (*it)->compare[i]);
|
||||||
}
|
}
|
||||||
f << stringf("\n");
|
f << stringf("\n");
|
||||||
|
|
Loading…
Reference in a new issue