[Mlir-commits] [mlir] [bazel] Fix bazel build after 00eaff3 #2. (PR #135962)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Wed Apr 16 06:42:32 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
Author: Benjamin Chetioui (bchetioui)
<details>
<summary>Changes</summary>
The linter messed up the order of includes, which is necessary as is.
---
Full diff: https://github.com/llvm/llvm-project/pull/135962.diff
1 Files Affected:
- (modified) mlir/include/mlir/Dialect/Bufferization/IR/BufferizationTypeInterfaces.h (+1-1)
``````````diff
diff --git a/mlir/include/mlir/Dialect/Bufferization/IR/BufferizationTypeInterfaces.h b/mlir/include/mlir/Dialect/Bufferization/IR/BufferizationTypeInterfaces.h
index 8672aa60a43c5..af2cad006e176 100644
--- a/mlir/include/mlir/Dialect/Bufferization/IR/BufferizationTypeInterfaces.h
+++ b/mlir/include/mlir/Dialect/Bufferization/IR/BufferizationTypeInterfaces.h
@@ -13,7 +13,7 @@
// Bufferization Type Interfaces
//===----------------------------------------------------------------------===//
+#include "mlir/IR/Types.h" // NOLINT
#include "mlir/Dialect/Bufferization/IR/BufferizationTypeInterfaces.h.inc"
-#include "mlir/IR/Types.h"
#endif // MLIR_DIALECT_BUFFERIZATION_IR_BUFFERIZATIONTYPEINTERFACES_H_
``````````
</details>
https://github.com/llvm/llvm-project/pull/135962
More information about the Mlir-commits
mailing list