mirror of https://github.com/YosysHQ/yosys.git
Also escape "=" in spice output
This commit is contained in:
parent
060bf4819a
commit
f3983a0940
|
@ -29,7 +29,7 @@ PRIVATE_NAMESPACE_BEGIN
|
||||||
|
|
||||||
static string spice_id2str(IdString id)
|
static string spice_id2str(IdString id)
|
||||||
{
|
{
|
||||||
static const char *escape_chars = "$\\[]()<>";
|
static const char *escape_chars = "$\\[]()<>=";
|
||||||
string s = RTLIL::unescape_id(id);
|
string s = RTLIL::unescape_id(id);
|
||||||
|
|
||||||
for (auto &ch : s)
|
for (auto &ch : s)
|
||||||
|
|
Loading…
Reference in New Issue