File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ namespace circt {
4141
4242using namespace circt ;
4343using namespace sim ;
44- using mlir::WalkOrder ;
44+ using namespace mlir ;
4545
4646// / Check whether an op should be placed inside an ifdef guard that prevents it
4747// / from affecting synthesis runs.
@@ -475,7 +475,7 @@ static bool moveOpsIntoIfdefGuardsAndProcesses(Operation *rootOp) {
475475 // ops nested inside it here, or we may create redundant/invalid
476476 // structure.
477477 if (isa<TriggeredOp>(op))
478- return mlir:: WalkResult::skip ();
478+ return WalkResult::skip ();
479479
480480 auto loc = op->getLoc ();
481481
@@ -558,7 +558,7 @@ static bool moveOpsIntoIfdefGuardsAndProcesses(Operation *rootOp) {
558558 // Move the op into the if body.
559559 op->moveBefore (block, block->end ());
560560 }
561- return mlir:: WalkResult::advance ();
561+ return WalkResult::advance ();
562562 });
563563
564564 return usedSynthesisMacro;
You can’t perform that action at this time.
0 commit comments