[PATCH] D78274: [MLIR] NFC after commit D77478.

Alex Zinenko via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 16 01:35:50 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rGa60fdd2ba487: [MLIR] NFC after commit D77478. (authored by chelini, committed by ftynse).

Changed prior to commit:
  https://reviews.llvm.org/D78274?vs=257963&id=257988#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D78274/new/

https://reviews.llvm.org/D78274

Files:
  mlir/lib/Transforms/Inliner.cpp
  mlir/lib/Transforms/Utils/GreedyPatternRewriteDriver.cpp


Index: mlir/lib/Transforms/Utils/GreedyPatternRewriteDriver.cpp
===================================================================
--- mlir/lib/Transforms/Utils/GreedyPatternRewriteDriver.cpp
+++ mlir/lib/Transforms/Utils/GreedyPatternRewriteDriver.cpp
@@ -6,7 +6,7 @@
 //
 //===----------------------------------------------------------------------===//
 //
-// This file implements mlir::applyPatternsGreedily.
+// This file implements mlir::applyPatternsAndFoldGreedily.
 //
 //===----------------------------------------------------------------------===//
 
Index: mlir/lib/Transforms/Inliner.cpp
===================================================================
--- mlir/lib/Transforms/Inliner.cpp
+++ mlir/lib/Transforms/Inliner.cpp
@@ -518,7 +518,8 @@
 
     // We also won't apply canonicalizations for nodes that are not
     // isolated. This avoids potentially mutating the regions of nodes defined
-    // above, this is also a stipulation of the 'applyPatternsGreedily' driver.
+    // above, this is also a stipulation of the 'applyPatternsAndFoldGreedily'
+    // driver.
     auto *region = node->getCallableRegion();
     if (!region->getParentOp()->isKnownIsolatedFromAbove())
       continue;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D78274.257988.patch
Type: text/x-patch
Size: 1215 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200416/ec2357fa/attachment.bin>


More information about the llvm-commits mailing list