diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-11-06 04:14:56 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-11-06 04:14:56 +0100 |
commit | f94266bb427111cfea06c64ff42389a08c448264 (patch) | |
tree | d1c132b2fe224f9a51e838f8ae82f93d248fbbb8 /kernel | |
parent | 1d34fd7608d4bb9929b9e6ce6eb5038e3d8b3a0a (diff) | |
download | yosys-f94266bb427111cfea06c64ff42389a08c448264.tar.gz yosys-f94266bb427111cfea06c64ff42389a08c448264.tar.bz2 yosys-f94266bb427111cfea06c64ff42389a08c448264.zip |
Added eval -vloghammer_report mode
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/rtlil.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 7bd67e08f..d64a37bb8 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -1152,6 +1152,9 @@ bool RTLIL::SigSpec::parse(RTLIL::SigSpec &sig, RTLIL::Module *module, std::stri continue; } + if (module == NULL) + return false; + if (netname[0] != '$' && netname[0] != '\\') netname = "\\" + netname; |