From 074349b68245a665dccd36d918ad1ca03dea88f6 Mon Sep 17 00:00:00 2001 From: Mateusz Gancarz Date: Thu, 27 Feb 2025 14:51:42 +0100 Subject: [PATCH] [#73220] remove unnecessary assert --- include/verilated_saif_c.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/verilated_saif_c.h b/include/verilated_saif_c.h index 5ff65e74b..95d4efa1e 100644 --- a/include/verilated_saif_c.h +++ b/include/verilated_saif_c.h @@ -40,7 +40,6 @@ public: VL_ATTR_ALWINLINE void aggregateVal(uint64_t dt, bool newVal) { m_transitions += newVal != m_lastVal ? 1 : 0; - assert(dt < 10000); m_highTime += m_lastVal ? dt : 0; m_lastVal = newVal; }