[Mlir-commits] [mlir] 7987a0d - Add missing dependent FuncDialect for `convert-async-to-llvm` pass

Mehdi Amini llvmlistbot at llvm.org
Sun Nov 6 12:24:08 PST 2022


Author: Mehdi Amini
Date: 2022-11-06T20:24:01Z
New Revision: 7987a0da9ff21a9cc7679f955ce14a4cbb4f57d6

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

LOG: Add missing dependent FuncDialect for `convert-async-to-llvm` pass

Fixes #58805

Added: 
    

Modified: 
    mlir/include/mlir/Conversion/Passes.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Conversion/Passes.td b/mlir/include/mlir/Conversion/Passes.td
index cef82f1e29ff1..5631d60025fa8 100644
--- a/mlir/include/mlir/Conversion/Passes.td
+++ b/mlir/include/mlir/Conversion/Passes.td
@@ -155,6 +155,7 @@ def ConvertAsyncToLLVM : Pass<"convert-async-to-llvm", "ModuleOp"> {
     "arith::ArithDialect",
     "async::AsyncDialect",
     "LLVM::LLVMDialect",
+    "func::FuncDialect",
   ];
 }
 


        


More information about the Mlir-commits mailing list