From 00c1f67c57f786b57096f058424acb8f8de622b8 Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Thu, 14 Jul 2022 16:28:09 +0100 Subject: [PATCH] Make trigger dumping functions always Slow code --- src/V3Sched.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/V3Sched.cpp b/src/V3Sched.cpp index 476453434..2633ed8f4 100644 --- a/src/V3Sched.cpp +++ b/src/V3Sched.cpp @@ -495,8 +495,8 @@ const TriggerKit createTriggers(AstNetlist* netlistp, SenExprBuilder& senExprBui // Create the trigger computation function AstCFunc* const funcp = makeSubFunction(netlistp, "_eval_triggers__" + name, slow); - // Create the trigger dump function (for debugging) - AstCFunc* const dumpp = makeSubFunction(netlistp, "_dump_triggers__" + name, slow); + // Create the trigger dump function (for debugging, always 'slow') + AstCFunc* const dumpp = makeSubFunction(netlistp, "_dump_triggers__" + name, true); dumpp->ifdef("VL_DEBUG"); // Add a print to the dumping function if there are no triggers pending