aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/ast.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-01-05 13:28:45 +0100
committerClifford Wolf <clifford@clifford.at>2018-01-05 13:28:45 +0100
commitc80315cea42414216bcc7b62acb2ef9a41b54eab (patch)
treebc089997bff5a8d906fc652441fdff803add06dd /frontends/ast/ast.cc
parentfefb652d568749731b581185e6cb201f0fff479e (diff)
downloadyosys-c80315cea42414216bcc7b62acb2ef9a41b54eab.tar.gz
yosys-c80315cea42414216bcc7b62acb2ef9a41b54eab.tar.bz2
yosys-c80315cea42414216bcc7b62acb2ef9a41b54eab.zip
Bugfix in hierarchy handling of blackbox module ports
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'frontends/ast/ast.cc')
-rw-r--r--frontends/ast/ast.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc
index be04d5536..037a9f3ee 100644
--- a/frontends/ast/ast.cc
+++ b/frontends/ast/ast.cc
@@ -1067,7 +1067,7 @@ AstModule::~AstModule()
}
// create a new parametric module (when needed) and return the name of the generated module
-RTLIL::IdString AstModule::derive(RTLIL::Design *design, dict<RTLIL::IdString, RTLIL::Const> parameters)
+RTLIL::IdString AstModule::derive(RTLIL::Design *design, dict<RTLIL::IdString, RTLIL::Const> parameters, bool)
{
std::string stripped_name = name.str();