aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/simplify.cc
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2023-01-23 16:24:22 +0100
committerGitHub <noreply@github.com>2023-01-23 16:24:22 +0100
commit245884a1011fe45b00bbb9cacd0111eb014adadf (patch)
treed1bcd1f90dc656bef8409bd5f7a677c8d4e4aa35 /frontends/ast/simplify.cc
parent9bc9121b9efeeb490ca593f75354457a4e420653 (diff)
parent6574553189fb6ccb5d00a0c043671a625672b3d3 (diff)
downloadyosys-245884a1011fe45b00bbb9cacd0111eb014adadf.tar.gz
yosys-245884a1011fe45b00bbb9cacd0111eb014adadf.tar.bz2
yosys-245884a1011fe45b00bbb9cacd0111eb014adadf.zip
Merge pull request #3629 from YosysHQ/micko/clang_fixes
Fixes for some of clang scan-build detected issues
Diffstat (limited to 'frontends/ast/simplify.cc')
-rw-r--r--frontends/ast/simplify.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc
index da7933d2f..71a26983b 100644
--- a/frontends/ast/simplify.cc
+++ b/frontends/ast/simplify.cc
@@ -4705,8 +4705,7 @@ void AstNode::mem2reg_as_needed_pass1(dict<AstNode*, pool<std::string>> &mem2reg
children_flags |= AstNode::MEM2REG_FL_ASYNC;
proc_flags_p = new dict<AstNode*, uint32_t>;
}
-
- if (type == AST_INITIAL) {
+ else if (type == AST_INITIAL) {
children_flags |= AstNode::MEM2REG_FL_INIT;
proc_flags_p = new dict<AstNode*, uint32_t>;
}