[Mlir-commits] [mlir] e413eb6 - [mlir] ConvertAsyncToLLVM: add missing dependence on async dialect
Emilio Cota
llvmlistbot at llvm.org
Thu Sep 8 13:17:59 PDT 2022
Author: Emilio Cota
Date: 2022-09-08T16:17:34-04:00
New Revision: e413eb6cf8779e586884413958caa77c6e711619
URL: https://github.com/llvm/llvm-project/commit/e413eb6cf8779e586884413958caa77c6e711619
DIFF: https://github.com/llvm/llvm-project/commit/e413eb6cf8779e586884413958caa77c6e711619.diff
LOG: [mlir] ConvertAsyncToLLVM: add missing dependence on async dialect
Differential Revision: https://reviews.llvm.org/D133516
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 9a28a49a4727..e2f32aff59cd 100644
--- a/mlir/include/mlir/Conversion/Passes.td
+++ b/mlir/include/mlir/Conversion/Passes.td
@@ -149,6 +149,7 @@ def ConvertAsyncToLLVM : Pass<"convert-async-to-llvm", "ModuleOp"> {
}];
let constructor = "mlir::createConvertAsyncToLLVMPass()";
let dependentDialects = [
+ "async::AsyncDialect",
"arith::ArithmeticDialect",
"LLVM::LLVMDialect",
];
More information about the Mlir-commits
mailing list