aboutsummaryrefslogtreecommitdiffstats
path: root/frontends
diff options
context:
space:
mode:
authorClaire Wolf <claire@symbioticeda.com>2020-07-10 18:41:13 +0200
committerClaire Wolf <claire@symbioticeda.com>2020-07-10 18:41:13 +0200
commitf9ed09423e5fb0b880d895d91ec51c61ffb04213 (patch)
tree54e6825553bf6f165f8cc6df3c4f485b5bedc0b8 /frontends
parentc0bcbe1f6254f050207a91506a63aa9d784bd8d6 (diff)
downloadyosys-f9ed09423e5fb0b880d895d91ec51c61ffb04213.tar.gz
yosys-f9ed09423e5fb0b880d895d91ec51c61ffb04213.tar.bz2
yosys-f9ed09423e5fb0b880d895d91ec51c61ffb04213.zip
Add AST_EDGE support to AstNode::detect_latch(), fixes #2241
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
Diffstat (limited to 'frontends')
-rw-r--r--frontends/ast/simplify.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc
index c4df5c0a0..00f8c8df6 100644
--- a/frontends/ast/simplify.cc
+++ b/frontends/ast/simplify.cc
@@ -4231,6 +4231,8 @@ bool AstNode::detect_latch(const std::string &var)
case AST_POSEDGE:
case AST_NEGEDGE:
return false;
+ case AST_EDGE:
+ break;
case AST_BLOCK:
if (!c->detect_latch(var))
return false;