diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-08-02 18:58:40 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-08-02 18:58:40 +0200 |
commit | 04727c7e0fb4c00b38999da192e4ada2a6f9474a (patch) | |
tree | 5cedd8807a1d846d5bd6790bfde555b70b8c283b /backends/btor | |
parent | 768eb846c4473040dc07bf62ce631c8a21474ae8 (diff) | |
download | yosys-04727c7e0fb4c00b38999da192e4ada2a6f9474a.tar.gz yosys-04727c7e0fb4c00b38999da192e4ada2a6f9474a.tar.bz2 yosys-04727c7e0fb4c00b38999da192e4ada2a6f9474a.zip |
No implicit conversion from IdString to anything else
Diffstat (limited to 'backends/btor')
-rw-r--r-- | backends/btor/btor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/btor/btor.cc b/backends/btor/btor.cc index 201be0cf5..a81d8f159 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); |