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

Mehdi Amini llvmlistbot at llvm.org
Thu Oct 26 23:59:28 PDT 2023


Author: Mehdi Amini
Date: 2023-10-26T23:58:09-07:00
New Revision: e48038a84b5ce310ffdf26d9aaf407fd32ffb133

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

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

Added: 
    

Modified: 
    mlir/lib/Analysis/DataFlow/DeadCodeAnalysis.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Analysis/DataFlow/DeadCodeAnalysis.cpp b/mlir/lib/Analysis/DataFlow/DeadCodeAnalysis.cpp
index 7a39e3ae34c1e65..64df74e78915ff4 100644
--- a/mlir/lib/Analysis/DataFlow/DeadCodeAnalysis.cpp
+++ b/mlir/lib/Analysis/DataFlow/DeadCodeAnalysis.cpp
@@ -8,9 +8,22 @@
 
 #include "mlir/Analysis/DataFlow/DeadCodeAnalysis.h"
 #include "mlir/Analysis/DataFlow/ConstantPropagationAnalysis.h"
+#include "mlir/Analysis/DataFlow/SparseAnalysis.h"
 #include "mlir/Analysis/DataFlowFramework.h"
+#include "mlir/IR/Attributes.h"
+#include "mlir/IR/Block.h"
+#include "mlir/IR/Diagnostics.h"
+#include "mlir/IR/Location.h"
+#include "mlir/IR/Operation.h"
+#include "mlir/IR/SymbolTable.h"
+#include "mlir/IR/Value.h"
+#include "mlir/IR/ValueRange.h"
 #include "mlir/Interfaces/CallInterfaces.h"
 #include "mlir/Interfaces/ControlFlowInterfaces.h"
+#include "mlir/Support/LLVM.h"
+#include "mlir/Support/LogicalResult.h"
+#include "llvm/Support/Casting.h"
+#include <cassert>
 #include <optional>
 
 using namespace mlir;


        


More information about the Mlir-commits mailing list