Skip to content

Commit ebc2c4b

Browse files
committed
Apply clang-tidy fixes for misc-include-cleaner in SparseAnalysis.cpp (NFC)
1 parent 37d1d9f commit ebc2c4b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

mlir/lib/Analysis/DataFlow/SparseAnalysis.cpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,20 @@
99
#include "mlir/Analysis/DataFlow/SparseAnalysis.h"
1010
#include "mlir/Analysis/DataFlow/DeadCodeAnalysis.h"
1111
#include "mlir/Analysis/DataFlowFramework.h"
12+
#include "mlir/IR/Attributes.h"
13+
#include "mlir/IR/Operation.h"
14+
#include "mlir/IR/Region.h"
15+
#include "mlir/IR/SymbolTable.h"
16+
#include "mlir/IR/Value.h"
17+
#include "mlir/IR/ValueRange.h"
1218
#include "mlir/Interfaces/CallInterfaces.h"
19+
#include "mlir/Interfaces/ControlFlowInterfaces.h"
20+
#include "mlir/Support/LLVM.h"
21+
#include "mlir/Support/LogicalResult.h"
22+
#include "llvm/ADT/STLExtras.h"
23+
#include "llvm/Support/Casting.h"
24+
#include <cassert>
25+
#include <optional>
1326

1427
using namespace mlir;
1528
using namespace mlir::dataflow;

0 commit comments

Comments
 (0)