aboutsummaryrefslogtreecommitdiffstats
path: root/backends/ilang/ilang_backend.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-03-14 18:42:45 +0100
committerGitHub <noreply@github.com>2019-03-14 18:42:45 +0100
commit44a44a06ed0a7489d6d3500c5fddc4a122afffa0 (patch)
tree5702034ed2245a403d2921a8edb35be76ae46a02 /backends/ilang/ilang_backend.cc
parent53b28b3f01b1ccef0cc5ba0af8000c6013d284bb (diff)
parent17caaa3fa898e39d1dbcfd8b92750a9d713a24af (diff)
downloadyosys-44a44a06ed0a7489d6d3500c5fddc4a122afffa0.tar.gz
yosys-44a44a06ed0a7489d6d3500c5fddc4a122afffa0.tar.bz2
yosys-44a44a06ed0a7489d6d3500c5fddc4a122afffa0.zip
Merge pull request #872 from YosysHQ/clifford/pmuxfix
Improve handling of "full_case" attributes
Diffstat (limited to 'backends/ilang/ilang_backend.cc')
-rw-r--r--backends/ilang/ilang_backend.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/ilang/ilang_backend.cc b/backends/ilang/ilang_backend.cc
index 4c58ea087..dc39e5e08 100644
--- a/backends/ilang/ilang_backend.cc
+++ b/backends/ilang/ilang_backend.cc
@@ -204,7 +204,7 @@ void ILANG_BACKEND::dump_proc_switch(std::ostream &f, std::string indent, const
f << stringf("%s case ", indent.c_str());
for (size_t i = 0; i < (*it)->compare.size(); i++) {
if (i > 0)
- f << stringf(", ");
+ f << stringf(" , ");
dump_sigspec(f, (*it)->compare[i]);
}
f << stringf("\n");