aboutsummaryrefslogtreecommitdiffstats
path: root/backends/blif/blif.cc
diff options
context:
space:
mode:
authoreddiehung <e.hung@imperial.ac.uk>2015-05-03 10:37:20 +0100
committereddiehung <e.hung@imperial.ac.uk>2015-05-03 10:37:20 +0100
commit079c1205fec6d194114b3d031d78a23cb8e0e7f9 (patch)
treee8bfc132286eca23a102373f64692574c368708a /backends/blif/blif.cc
parent872e13321c4c39997d3b14408224ef1c2fcc0821 (diff)
downloadyosys-079c1205fec6d194114b3d031d78a23cb8e0e7f9.tar.gz
yosys-079c1205fec6d194114b3d031d78a23cb8e0e7f9.tar.bz2
yosys-079c1205fec6d194114b3d031d78a23cb8e0e7f9.zip
Escape '<' and '>' some more
Diffstat (limited to 'backends/blif/blif.cc')
-rw-r--r--backends/blif/blif.cc2
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)