diff options
Diffstat (limited to 'mlir/lib/Transforms/CSE.cpp')
-rw-r--r-- | mlir/lib/Transforms/CSE.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mlir/lib/Transforms/CSE.cpp b/mlir/lib/Transforms/CSE.cpp index 59658526c25..bb89aef7fef 100644 --- a/mlir/lib/Transforms/CSE.cpp +++ b/mlir/lib/Transforms/CSE.cpp @@ -213,7 +213,7 @@ void CSE::simplifyRegion(ScopedMapTy &knownValues, DominanceInfo &domInfo, std::deque<std::unique_ptr<CFGStackNode>> stack; // Process the nodes of the dom tree for this region. - stack.emplace_back(llvm::make_unique<CFGStackNode>( + stack.emplace_back(std::make_unique<CFGStackNode>( knownValues, domInfo.getRootNode(®ion))); while (!stack.empty()) { @@ -229,7 +229,7 @@ void CSE::simplifyRegion(ScopedMapTy &knownValues, DominanceInfo &domInfo, if (currentNode->childIterator != currentNode->node->end()) { auto *childNode = *(currentNode->childIterator++); stack.emplace_back( - llvm::make_unique<CFGStackNode>(knownValues, childNode)); + std::make_unique<CFGStackNode>(knownValues, childNode)); } else { // Finally, if the node and all of its children have been processed // then we delete the node. @@ -259,7 +259,7 @@ void CSE::runOnFunction() { } std::unique_ptr<FunctionPassBase> mlir::createCSEPass() { - return llvm::make_unique<CSE>(); + return std::make_unique<CSE>(); } static PassRegistration<CSE> |