Skip to content

Commit

Permalink
[slang][analysis] Fix ClockVisitor endless call recursion again
Browse files Browse the repository at this point in the history
  • Loading branch information
Yan Churkin committed Feb 27, 2025
1 parent 9b4e8c9 commit d69f07d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/analysis/AnalyzedAssertion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ struct ClockVisitor {
}

VisitResult visit(const DisableIffAssertionExpr& expr, Clock outerClock, bitmask<VF> flags) {
return expr.visit(*this, outerClock, flags);
return expr.expr.visit(*this, outerClock, flags);
}

private:
Expand Down

0 comments on commit d69f07d

Please sign in to comment.