[Mlir-commits] [mlir] 383f2bd - Apply clang-tidy fixes for misc-include-cleaner in IntegerRangeAnalysis.cpp (NFC)
Mehdi Amini
llvmlistbot at llvm.org
Sat Oct 28 21:39:44 PDT 2023
Author: Mehdi Amini
Date: 2023-10-28T21:39:30-07:00
New Revision: 383f2bd597d8c8504f5d5d68ff21c7cc267f3ee9
URL: https://github.com/llvm/llvm-project/commit/383f2bd597d8c8504f5d5d68ff21c7cc267f3ee9
DIFF: https://github.com/llvm/llvm-project/commit/383f2bd597d8c8504f5d5d68ff21c7cc267f3ee9.diff
LOG: Apply clang-tidy fixes for misc-include-cleaner in IntegerRangeAnalysis.cpp (NFC)
Added:
Modified:
mlir/lib/Analysis/DataFlow/IntegerRangeAnalysis.cpp
Removed:
################################################################################
diff --git a/mlir/lib/Analysis/DataFlow/IntegerRangeAnalysis.cpp b/mlir/lib/Analysis/DataFlow/IntegerRangeAnalysis.cpp
index bd08d1a33ec16d0..a43263bc11113b8 100644
--- a/mlir/lib/Analysis/DataFlow/IntegerRangeAnalysis.cpp
+++ b/mlir/lib/Analysis/DataFlow/IntegerRangeAnalysis.cpp
@@ -14,10 +14,22 @@
#include "mlir/Analysis/DataFlow/IntegerRangeAnalysis.h"
#include "mlir/Analysis/DataFlow/ConstantPropagationAnalysis.h"
+#include "mlir/Analysis/DataFlow/SparseAnalysis.h"
+#include "mlir/Analysis/DataFlowFramework.h"
+#include "mlir/IR/BuiltinAttributes.h"
+#include "mlir/IR/Dialect.h"
+#include "mlir/IR/OpDefinition.h"
+#include "mlir/IR/Value.h"
+#include "mlir/Interfaces/ControlFlowInterfaces.h"
#include "mlir/Interfaces/InferIntRangeInterface.h"
#include "mlir/Interfaces/LoopLikeInterface.h"
+#include "mlir/Support/LLVM.h"
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/Support/Casting.h"
#include "llvm/Support/Debug.h"
+#include <cassert>
#include <optional>
+#include <utility>
#define DEBUG_TYPE "int-range-analysis"
More information about the Mlir-commits
mailing list