[Mlir-commits] [mlir] dc81dfa - Apply clang-tidy fixes for misc-include-cleaner in IRInterfaces.cpp (NFC)
Mehdi Amini
llvmlistbot at llvm.org
Sat Nov 18 15:38:38 PST 2023
Author: Mehdi Amini
Date: 2023-11-18T15:38:21-08:00
New Revision: dc81dfa029e09f4e26ec8820bb5c3cfc9d5c5460
URL: https://github.com/llvm/llvm-project/commit/dc81dfa029e09f4e26ec8820bb5c3cfc9d5c5460
DIFF: https://github.com/llvm/llvm-project/commit/dc81dfa029e09f4e26ec8820bb5c3cfc9d5c5460.diff
LOG: Apply clang-tidy fixes for misc-include-cleaner in IRInterfaces.cpp (NFC)
Added:
Modified:
mlir/lib/Bindings/Python/IRInterfaces.cpp
Removed:
################################################################################
diff --git a/mlir/lib/Bindings/Python/IRInterfaces.cpp b/mlir/lib/Bindings/Python/IRInterfaces.cpp
index dd4190016e19013..136bb1b2b136cc2 100644
--- a/mlir/lib/Bindings/Python/IRInterfaces.cpp
+++ b/mlir/lib/Bindings/Python/IRInterfaces.cpp
@@ -6,13 +6,23 @@
//
//===----------------------------------------------------------------------===//
+#include <cstdint>
#include <optional>
+#include <pybind11/cast.h>
+#include <pybind11/detail/common.h>
+#include <pybind11/pybind11.h>
+#include <pybind11/pytypes.h>
+#include <string>
#include <utility>
+#include <vector>
#include "IRModule.h"
#include "mlir-c/BuiltinAttributes.h"
+#include "mlir-c/IR.h"
#include "mlir-c/Interfaces.h"
+#include "mlir-c/Support.h"
#include "llvm/ADT/STLExtras.h"
+#include "llvm/ADT/SmallVector.h"
namespace py = pybind11;
More information about the Mlir-commits
mailing list