aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/ast.cc
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2021-03-14 15:02:16 +0000
committerGitHub <noreply@github.com>2021-03-14 15:02:16 +0000
commite178d0367a315213560514f827072595adfd4b4a (patch)
tree8f5b6ccaba28f979992946f0efda2ffdd49d74f0 /frontends/ast/ast.cc
parent396ad17e06a7b5fa912180540206a6560b54101f (diff)
parent640b9927fae23d3127cc9ecb56ccbc8a2c66afbe (diff)
downloadyosys-e178d0367a315213560514f827072595adfd4b4a.tar.gz
yosys-e178d0367a315213560514f827072595adfd4b4a.tar.bz2
yosys-e178d0367a315213560514f827072595adfd4b4a.zip
Merge pull request #2658 from zachjs/parameters-across-files
sv: allow globals in one file to depend on globals in another
Diffstat (limited to 'frontends/ast/ast.cc')
-rw-r--r--frontends/ast/ast.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc
index 06e2e23a8..7aa391c93 100644
--- a/frontends/ast/ast.cc
+++ b/frontends/ast/ast.cc
@@ -1288,7 +1288,6 @@ void AST::process(RTLIL::Design *design, AstNode *ast, bool dump_ast1, bool dump
// must be global definition
if ((*it)->type == AST_PARAMETER)
(*it)->type = AST_LOCALPARAM; // cannot be overridden
- (*it)->simplify(false, false, false, 1, -1, false, false); //process enum/other declarations
design->verilog_globals.push_back((*it)->clone());
current_scope.clear();
}