[Mlir-commits] [mlir] 0d10903 - Apply clang-tidy fixes for misc-include-cleaner in IRCore.cpp (NFC)

Mehdi Amini llvmlistbot at llvm.org
Sat Nov 18 15:38:35 PST 2023


Author: Mehdi Amini
Date: 2023-11-18T15:38:21-08:00
New Revision: 0d109035c29408f06efc148d67aab7e4b2aada5d

URL: https://github.com/llvm/llvm-project/commit/0d109035c29408f06efc148d67aab7e4b2aada5d
DIFF: https://github.com/llvm/llvm-project/commit/0d109035c29408f06efc148d67aab7e4b2aada5d.diff

LOG: Apply clang-tidy fixes for misc-include-cleaner in IRCore.cpp (NFC)

Added: 
    

Modified: 
    mlir/lib/Bindings/Python/IRCore.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Bindings/Python/IRCore.cpp b/mlir/lib/Bindings/Python/IRCore.cpp
index fb02b73a79f4824..d75cd8a0c9f79c8 100644
--- a/mlir/lib/Bindings/Python/IRCore.cpp
+++ b/mlir/lib/Bindings/Python/IRCore.cpp
@@ -17,12 +17,36 @@
 #include "mlir-c/Diagnostics.h"
 #include "mlir-c/IR.h"
 #include "mlir-c/Support.h"
-#include "mlir/Bindings/Python/PybindAdaptors.h"
+#include "mlir/Support/LLVM.h"
 #include "llvm/ADT/ArrayRef.h"
+#include "llvm/ADT/Hashing.h"
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/ADT/SmallVector.h"
-
+#include "llvm/ADT/StringRef.h"
+#include "llvm/ADT/Twine.h"
+
+#include <cassert>
+#include <cstddef>
+#include <cstdint>
+#include <cstdio>
+#include <exception>
+#include <funcobject.h>
+#include <functional>
 #include <optional>
+#include <pybind11/attr.h>
+#include <pybind11/cast.h>
+#include <pybind11/detail/common.h>
+#include <pybind11/detail/type_caster_base.h>
+#include <pybind11/gil.h>
+#include <pybind11/pybind11.h>
+#include <pybind11/pytypes.h>
+#include <pyerrors.h>
+#include <stdexcept>
+#include <string>
+#include <string_view>
+#include <tuple>
 #include <utility>
+#include <vector>
 
 namespace py = pybind11;
 using namespace py::literals;


        


More information about the Mlir-commits mailing list