summaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
Diffstat (limited to 'backends')
-rw-r--r--backends/blif/blif.cc2
-rw-r--r--backends/btor/btor.cc2
-rw-r--r--backends/edif/edif.cc4
-rw-r--r--backends/spice/spice.cc2
4 files changed, 5 insertions, 5 deletions
diff --git a/backends/blif/blif.cc b/backends/blif/blif.cc
index ecde8b5a..5daab669 100644
--- a/backends/blif/blif.cc
+++ b/backends/blif/blif.cc
@@ -363,7 +363,7 @@ struct BlifBackend : public Backend {
if (top_module_name.empty())
for (auto & mod_it:design->modules_)
if (mod_it.second->get_bool_attribute("\\top"))
- top_module_name = mod_it.first;
+ top_module_name = mod_it.first.str();
fprintf(f, "# Generated by %s\n", yosys_version_str);
diff --git a/backends/btor/btor.cc b/backends/btor/btor.cc
index 201be0cf..a81d8f15 100644
--- a/backends/btor/btor.cc
+++ b/backends/btor/btor.cc
@@ -968,7 +968,7 @@ struct BtorBackend : public Backend {
if (top_module_name.empty())
for (auto & mod_it:design->modules_)
if (mod_it.second->get_bool_attribute("\\top"))
- top_module_name = mod_it.first;
+ top_module_name = mod_it.first.str();
fprintf(f, "; Generated by %s\n", yosys_version_str);
fprintf(f, "; %s developed and maintained by Clifford Wolf <clifford@clifford.at>\n", yosys_version_str);
diff --git a/backends/edif/edif.cc b/backends/edif/edif.cc
index bf1efc4a..ecdfaabf 100644
--- a/backends/edif/edif.cc
+++ b/backends/edif/edif.cc
@@ -126,7 +126,7 @@ struct EdifBackend : public Backend {
if (top_module_name.empty())
for (auto & mod_it:design->modules_)
if (mod_it.second->get_bool_attribute("\\top"))
- top_module_name = mod_it.first;
+ top_module_name = mod_it.first.str();
for (auto module_it : design->modules_)
{
@@ -135,7 +135,7 @@ struct EdifBackend : public Backend {
continue;
if (top_module_name.empty())
- top_module_name = module->name;
+ top_module_name = module->name.str();
if (module->processes.size() != 0)
log_error("Found unmapped processes in module %s: unmapped processes are not supported in EDIF backend!\n", RTLIL::id2cstr(module->name));
diff --git a/backends/spice/spice.cc b/backends/spice/spice.cc
index a445e9cc..be0086ff 100644
--- a/backends/spice/spice.cc
+++ b/backends/spice/spice.cc
@@ -172,7 +172,7 @@ struct SpiceBackend : public Backend {
if (top_module_name.empty())
for (auto & mod_it:design->modules_)
if (mod_it.second->get_bool_attribute("\\top"))
- top_module_name = mod_it.first;
+ top_module_name = mod_it.first.str();
fprintf(f, "* SPICE netlist generated by %s\n", yosys_version_str);
fprintf(f, "\n");