Skip to content

Commit 63a14bf

Browse files
committed
using namespace mlir
1 parent 2bdf908 commit 63a14bf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/Conversion/SimToSV/SimToSV.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ namespace circt {
4141

4242
using namespace circt;
4343
using 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;

0 commit comments

Comments
 (0)