From: Jakob Wenzel Date: Mon, 22 Jul 2019 08:37:40 +0000 (+0200) Subject: initialize noblackbox and nowb in AstModule::clone X-Git-Tag: working-ls180~1180^2~5^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e2fe8e0a4fd3108de8b7db556be45efc8122173d;p=yosys.git initialize noblackbox and nowb in AstModule::clone --- diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc index 3d066af53..943466ee3 100644 --- a/frontends/ast/ast.cc +++ b/frontends/ast/ast.cc @@ -1551,7 +1551,9 @@ RTLIL::Module *AstModule::clone() const new_mod->nomeminit = nomeminit; new_mod->nomem2reg = nomem2reg; new_mod->mem2reg = mem2reg; + new_mod->noblackbox = noblackbox; new_mod->lib = lib; + new_mod->nowb = nowb; new_mod->noopt = noopt; new_mod->icells = icells; new_mod->pwires = pwires;