Apply 'make format'

This commit is contained in:
github action 2026-03-27 19:08:04 +00:00
parent ae24c8eb43
commit 8a646d14be
2 changed files with 1 additions and 3 deletions

View File

@ -1077,8 +1077,7 @@ class TimingControlVisitor final : public VNVisitor {
// If post updates are destructive (e.g. clearFired on events), perform a
// conservative pre-clear once before entering the wait loop so stale state from a
// previous wait does not cause an immediate false-positive trigger.
const bool hasDestructivePostUpdates
= !senResults.m_destructivePostUpdates.empty();
const bool hasDestructivePostUpdates = !senResults.m_destructivePostUpdates.empty();
if (hasDestructivePostUpdates) {
for (AstNodeStmt* const stmtp : senResults.m_destructivePostUpdates) {
nodep->addHereThisAsNext(stmtp);

1
test_regress/t/t_clocking_event_readback.py Normal file → Executable file
View File

@ -19,4 +19,3 @@ test.file_grep(test.run_log_filename, r'FIRST_RESULT d0=00000005 d1=00000005 d2=
test.file_grep(test.run_log_filename, r'SECOND_RESULT m0=00000005 m1=00000005 m2=00000005')
test.passes()