[PATCH] D80135: [mlir] DialectConversion: support erasing blocks

River Riddle via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 27 13:37:47 PDT 2020


rriddle added inline comments.


================
Comment at: mlir/lib/Transforms/DialectConversion.cpp:726
+  for (auto &action : blockActions) {
+    if (action.kind != BlockActionKind::Erase)
+      continue;
----------------
nit: Reverse the if condition here.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D80135





More information about the llvm-commits mailing list