aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast
diff options
context:
space:
mode:
authorJakob Wenzel <wenzel@rs.tu-darmstadt.de>2019-07-22 10:37:40 +0200
committerJakob Wenzel <wenzel@rs.tu-darmstadt.de>2019-07-22 10:37:40 +0200
commite2fe8e0a4fd3108de8b7db556be45efc8122173d (patch)
treec8c3bb05ac0ae93119ceeca8cdc24cca9267f480 /frontends/ast
parentc6d8692c9711e4b65aa89ad60986c9df7e053fc7 (diff)
downloadyosys-e2fe8e0a4fd3108de8b7db556be45efc8122173d.tar.gz
yosys-e2fe8e0a4fd3108de8b7db556be45efc8122173d.tar.bz2
yosys-e2fe8e0a4fd3108de8b7db556be45efc8122173d.zip
initialize noblackbox and nowb in AstModule::clone
Diffstat (limited to 'frontends/ast')
-rw-r--r--frontends/ast/ast.cc2
1 files changed, 2 insertions, 0 deletions
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;