summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMehdi Amini <joker.eph@gmail.com>2023-10-20 01:36:36 -0700
committerMehdi Amini <joker.eph@gmail.com>2023-11-18 15:38:21 -0800
commitdc81dfa029e09f4e26ec8820bb5c3cfc9d5c5460 (patch)
tree624c6d8eab2d2bc8b6b5d51d57c33f5aa0536538
parentb1d682e05a63dfafa0c016498527f02edb9b69b2 (diff)
Apply clang-tidy fixes for misc-include-cleaner in IRInterfaces.cpp (NFC)
-rw-r--r--mlir/lib/Bindings/Python/IRInterfaces.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/mlir/lib/Bindings/Python/IRInterfaces.cpp b/mlir/lib/Bindings/Python/IRInterfaces.cpp
index dd4190016e19..136bb1b2b136 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;