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

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


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

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

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

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Analysis/DataFlow/DenseAnalysis.cpp b/mlir/lib/Analysis/DataFlow/DenseAnalysis.cpp
index 5e75883e61468ec..a6c9f7d7da225e9 100644
--- a/mlir/lib/Analysis/DataFlow/DenseAnalysis.cpp
+++ b/mlir/lib/Analysis/DataFlow/DenseAnalysis.cpp
@@ -8,8 +8,19 @@
 
 #include "mlir/Analysis/DataFlow/DenseAnalysis.h"
 #include "mlir/Analysis/DataFlow/DeadCodeAnalysis.h"
+#include "mlir/Analysis/DataFlowFramework.h"
+#include "mlir/IR/Block.h"
+#include "mlir/IR/OpDefinition.h"
+#include "mlir/IR/Operation.h"
+#include "mlir/IR/Region.h"
 #include "mlir/Interfaces/CallInterfaces.h"
 #include "mlir/Interfaces/ControlFlowInterfaces.h"
+#include "mlir/Support/LLVM.h"
+#include "mlir/Support/LogicalResult.h"
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/Support/Casting.h"
+#include <cassert>
+#include <optional>
 
 using namespace mlir;
 using namespace mlir::dataflow;


        


More information about the Mlir-commits mailing list