From: Clifford Wolf Date: Wed, 16 Oct 2019 07:06:57 +0000 (+0200) Subject: Fix parsing of .cname BLIF statements X-Git-Tag: working-ls180~993 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=71936209cf194c06dc59d5e17bf3c153a000892f;p=yosys.git Fix parsing of .cname BLIF statements Signed-off-by: Clifford Wolf --- diff --git a/frontends/blif/blifparse.cc b/frontends/blif/blifparse.cc index bfcfad78a..cab210605 100644 --- a/frontends/blif/blifparse.cc +++ b/frontends/blif/blifparse.cc @@ -286,7 +286,7 @@ void parse_blif(RTLIL::Design *design, std::istream &f, IdString dff_name, bool goto error_with_reason; } - module->rename(lastcell, p); + module->rename(lastcell, RTLIL::escape_id(p)); continue; }