We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eb8e7b commit db68e6aCopy full SHA for db68e6a
mlir/lib/Transforms/Canonicalizer.cpp
@@ -67,9 +67,9 @@ std::unique_ptr<Pass> mlir::createCanonicalizerPass() {
67
68
/// Creates an instance of the Canonicalizer pass with the specified config.
69
std::unique_ptr<Pass>
70
-createCanonicalizerPass(const GreedyRewriteConfig &config,
71
- ArrayRef<std::string> disabledPatterns = llvm::None,
72
- ArrayRef<std::string> enabledPatterns = llvm::None) {
+mlir::createCanonicalizerPass(const GreedyRewriteConfig &config,
+ ArrayRef<std::string> disabledPatterns,
+ ArrayRef<std::string> enabledPatterns) {
73
return std::make_unique<Canonicalizer>(config, disabledPatterns,
74
enabledPatterns);
75
}
0 commit comments