@@ -438,11 +438,12 @@ struct VerifBoundedModelCheckingOpConversion
438438 // that drives it. We need this mapping so we can correctly route
439439 // We extract this mapping now and then immediately erase the
440440 // verif.clocked_by ops because they are auxiliary metadata operations
441- // that the downstream SMT dialect converter does not know how to legalize.
441+ // that the downstream SMT dialect converter does not know how to
442+ // legalize.
442443 auto &circuitBlock = circuitFuncOp.getBody ().front ();
443444 auto *circuitYield = circuitBlock.getTerminator ();
444- for (auto clockedBy :
445- llvm::make_early_inc_range ( circuitBlock.getOps <verif::ClockedByOp>())) {
445+ for (auto clockedBy : llvm::make_early_inc_range (
446+ circuitBlock.getOps <verif::ClockedByOp>())) {
446447 auto nextState = clockedBy.getNextState ();
447448 auto clockArg = cast<BlockArgument>(clockedBy.getClock ());
448449 unsigned nextStateIdx = 0 ;
@@ -670,10 +671,11 @@ struct VerifBoundedModelCheckingOpConversion
670671 clockIdx = clockIndexes[0 ];
671672 auto isPosedge = isPosedgePerClock[clockIdx];
672673 // Create an ITE (If-Then-Else) to calculate the next reg state.
673- // For multi-clock designs, each register's next-state update is strictly
674- // gated by the specific `isPosedge` condition of the clock that drives it.
675- // If a register's specific clock didn't tick in this SMT frame, the ITE
676- // forces it to hold its previous state.
674+ // For multi-clock designs, each register's next-state update is
675+ // strictly gated by the specific `isPosedge` condition of the
676+ // clock that drives it. If a register's specific clock didn't
677+ // tick in this SMT frame, the ITE forces it to hold its previous
678+ // state.
677679 // TODO: we create a lot of ITEs here that will slow things down
678680 // - these could be avoided by making init/loop regions concrete
679681 nextRegStates.push_back (smt::IteOp::create (
0 commit comments