Escape '<' and '>' some more

This commit is contained in:
eddiehung 2015-05-03 10:37:20 +01:00
parent 872e13321c
commit 079c1205fe
1 changed files with 1 additions and 1 deletions

View File

@ -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)