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

Mehdi Amini llvmlistbot at llvm.org
Sat Oct 28 21:39:47 PDT 2023


Author: Mehdi Amini
Date: 2023-10-28T21:39:30-07:00
New Revision: ebc2c4bde3ec0d37d1bcb224e7ffcc18ac4e2620

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

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

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Analysis/DataFlow/SparseAnalysis.cpp b/mlir/lib/Analysis/DataFlow/SparseAnalysis.cpp
index 02a0ce1bb292130..9f544d656df9256 100644
--- a/mlir/lib/Analysis/DataFlow/SparseAnalysis.cpp
+++ b/mlir/lib/Analysis/DataFlow/SparseAnalysis.cpp
@@ -9,7 +9,20 @@
 #include "mlir/Analysis/DataFlow/SparseAnalysis.h"
 #include "mlir/Analysis/DataFlow/DeadCodeAnalysis.h"
 #include "mlir/Analysis/DataFlowFramework.h"
+#include "mlir/IR/Attributes.h"
+#include "mlir/IR/Operation.h"
+#include "mlir/IR/Region.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/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