[Mlir-commits] [mlir] e2e1a78 - [mlir][NFC] Remove stale `createLowerAffinePass` declaration

River Riddle llvmlistbot at llvm.org
Mon May 17 13:32:55 PDT 2021


Author: River Riddle
Date: 2021-05-17T13:25:31-07:00
New Revision: e2e1a78abcefb396ea1c08990f4cf20ae5068ef8

URL: https://github.com/llvm/llvm-project/commit/e2e1a78abcefb396ea1c08990f4cf20ae5068ef8
DIFF: https://github.com/llvm/llvm-project/commit/e2e1a78abcefb396ea1c08990f4cf20ae5068ef8.diff

LOG: [mlir][NFC] Remove stale `createLowerAffinePass` declaration

This pass isn't defined in the Transforms/ library anymore.

Added: 
    

Modified: 
    mlir/include/mlir/Transforms/Passes.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Transforms/Passes.h b/mlir/include/mlir/Transforms/Passes.h
index 1d4234b38efca..fd6f25a019182 100644
--- a/mlir/include/mlir/Transforms/Passes.h
+++ b/mlir/include/mlir/Transforms/Passes.h
@@ -82,11 +82,6 @@ std::unique_ptr<Pass> createLoopInvariantCodeMotionPass();
 /// memory hierarchy.
 std::unique_ptr<OperationPass<FuncOp>> createPipelineDataTransferPass();
 
-/// Lowers affine control flow operations (ForStmt, IfStmt and AffineApplyOp)
-/// to equivalent lower-level constructs (flow of basic blocks and arithmetic
-/// primitives).
-std::unique_ptr<Pass> createLowerAffinePass();
-
 /// Creates a pass that transforms perfectly nested loops with independent
 /// bounds into a single loop.
 std::unique_ptr<OperationPass<FuncOp>> createLoopCoalescingPass();


        


More information about the Mlir-commits mailing list