From f9ed09423e5fb0b880d895d91ec51c61ffb04213 Mon Sep 17 00:00:00 2001 From: Claire Wolf Date: Fri, 10 Jul 2020 18:41:13 +0200 Subject: [PATCH] Add AST_EDGE support to AstNode::detect_latch(), fixes #2241 Signed-off-by: Claire Wolf --- frontends/ast/simplify.cc | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.30.2