diff options
author | Claire Wolf <claire@symbioticeda.com> | 2020-07-10 18:41:13 +0200 |
---|---|---|
committer | Claire Wolf <claire@symbioticeda.com> | 2020-07-10 18:41:13 +0200 |
commit | f9ed09423e5fb0b880d895d91ec51c61ffb04213 (patch) | |
tree | 54e6825553bf6f165f8cc6df3c4f485b5bedc0b8 /frontends | |
parent | c0bcbe1f6254f050207a91506a63aa9d784bd8d6 (diff) | |
download | yosys-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.cc | 2 |
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; |