diff options
author | eddiehung <e.hung@imperial.ac.uk> | 2015-05-03 10:37:20 +0100 |
---|---|---|
committer | eddiehung <e.hung@imperial.ac.uk> | 2015-05-03 10:37:20 +0100 |
commit | 079c1205fec6d194114b3d031d78a23cb8e0e7f9 (patch) | |
tree | e8bfc132286eca23a102373f64692574c368708a /backends | |
parent | 872e13321c4c39997d3b14408224ef1c2fcc0821 (diff) | |
download | yosys-079c1205fec6d194114b3d031d78a23cb8e0e7f9.tar.gz yosys-079c1205fec6d194114b3d031d78a23cb8e0e7f9.tar.bz2 yosys-079c1205fec6d194114b3d031d78a23cb8e0e7f9.zip |
Escape '<' and '>' some more
Diffstat (limited to 'backends')
-rw-r--r-- | backends/blif/blif.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/blif/blif.cc b/backends/blif/blif.cc index 4a5121977..3a4618a90 100644 --- a/backends/blif/blif.cc +++ b/backends/blif/blif.cc @@ -82,7 +82,7 @@ struct BlifDumper std::string str = RTLIL::unescape_id(sig.wire->name); for (size_t i = 0; i < str.size(); i++) - if (str[i] == '#' || str[i] == '=') + if (str[i] == '#' || str[i] == '=' || str[i] == '<' || str[i] == '>') str[i] = '?'; if (sig.wire->width != 1) |