[Mlir-commits] [mlir] f8e83c4 - [mlir] Use dictionary order to order the pass decl (NFC) (#168648)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Nov 19 00:12:26 PST 2025


Author: lonely eagle
Date: 2025-11-19T16:12:23+08:00
New Revision: f8e83c428a8d85d18242d4bd57bec0d02c8253e8

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

LOG: [mlir] Use dictionary order to order the pass decl (NFC) (#168648)

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 17c323a042ec2..724da009e70f1 100644
--- a/mlir/include/mlir/Transforms/Passes.h
+++ b/mlir/include/mlir/Transforms/Passes.h
@@ -31,23 +31,23 @@ class GreedyRewriteConfig;
 // Passes
 //===----------------------------------------------------------------------===//
 
+#define GEN_PASS_DECL_BUBBLEDOWNMEMORYSPACECASTS
+#define GEN_PASS_DECL_CSE
 #define GEN_PASS_DECL_CANONICALIZER
+#define GEN_PASS_DECL_COMPOSITEFIXEDPOINTPASS
 #define GEN_PASS_DECL_CONTROLFLOWSINK
-#define GEN_PASS_DECL_CSE
-#define GEN_PASS_DECL_INLINER
+#define GEN_PASS_DECL_GENERATERUNTIMEVERIFICATION
 #define GEN_PASS_DECL_LOOPINVARIANTCODEMOTION
+#define GEN_PASS_DECL_INLINER
 #define GEN_PASS_DECL_MEM2REG
 #define GEN_PASS_DECL_PRINTIRPASS
 #define GEN_PASS_DECL_PRINTOPSTATS
+#define GEN_PASS_DECL_SCCP
 #define GEN_PASS_DECL_SROA
 #define GEN_PASS_DECL_STRIPDEBUGINFO
-#define GEN_PASS_DECL_SCCP
 #define GEN_PASS_DECL_SYMBOLDCE
 #define GEN_PASS_DECL_SYMBOLPRIVATIZE
 #define GEN_PASS_DECL_TOPOLOGICALSORT
-#define GEN_PASS_DECL_COMPOSITEFIXEDPOINTPASS
-#define GEN_PASS_DECL_BUBBLEDOWNMEMORYSPACECASTS
-#define GEN_PASS_DECL_GENERATERUNTIMEVERIFICATION
 #include "mlir/Transforms/Passes.h.inc"
 
 /// Creates an instance of the Canonicalizer pass, configured with default


        


More information about the Mlir-commits mailing list