From: eddiehung Date: Sun, 3 May 2015 09:37:20 +0000 (+0100) Subject: Escape '<' and '>' some more X-Git-Tag: yosys-0.7~186^2~3^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=079c1205fec6d194114b3d031d78a23cb8e0e7f9;p=yosys.git Escape '<' and '>' some more --- 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)