diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-05-20 16:43:13 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-05-20 16:43:13 +0200 |
commit | f3983a094052e875e05823a6063c1775d1f84b39 (patch) | |
tree | 4ded7412ea1b567c48462f84f2c2880523bc362b /backends/spice | |
parent | 060bf4819a3742ba2ad8142c9a7e665555c22ac7 (diff) | |
download | yosys-f3983a094052e875e05823a6063c1775d1f84b39.tar.gz yosys-f3983a094052e875e05823a6063c1775d1f84b39.tar.bz2 yosys-f3983a094052e875e05823a6063c1775d1f84b39.zip |
Also escape "=" in spice output
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 4b88a3909..4101cbf98 100644 --- a/backends/spice/spice.cc +++ b/backends/spice/spice.cc @@ -29,7 +29,7 @@ PRIVATE_NAMESPACE_BEGIN static string spice_id2str(IdString id) { - static const char *escape_chars = "$\\[]()<>"; + static const char *escape_chars = "$\\[]()<>="; string s = RTLIL::unescape_id(id); for (auto &ch : s) |