[Mlir-commits] [mlir] d8094d3 - [mlir] NFC: ConvertAsyncToLLVM: sort deps alphabetically
Emilio Cota
llvmlistbot at llvm.org
Fri Sep 9 12:00:31 PDT 2022
Author: Emilio Cota
Date: 2022-09-09T15:00:07-04:00
New Revision: d8094d32ed32ff2c0a133155662a29c9d2a11335
URL: https://github.com/llvm/llvm-project/commit/d8094d32ed32ff2c0a133155662a29c9d2a11335
DIFF: https://github.com/llvm/llvm-project/commit/d8094d32ed32ff2c0a133155662a29c9d2a11335.diff
LOG: [mlir] NFC: ConvertAsyncToLLVM: sort deps alphabetically
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 e2f32aff59cd..71821d7074b0 100644
--- a/mlir/include/mlir/Conversion/Passes.td
+++ b/mlir/include/mlir/Conversion/Passes.td
@@ -149,8 +149,8 @@ def ConvertAsyncToLLVM : Pass<"convert-async-to-llvm", "ModuleOp"> {
}];
let constructor = "mlir::createConvertAsyncToLLVMPass()";
let dependentDialects = [
- "async::AsyncDialect",
"arith::ArithmeticDialect",
+ "async::AsyncDialect",
"LLVM::LLVMDialect",
];
}
More information about the Mlir-commits
mailing list