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/spice | |
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/spice')
-rw-r--r-- | backends/spice/spice.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/spice/spice.cc b/backends/spice/spice.cc index a445e9cc9..be0086ffd 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"); |