1 //===- PassDetail.h - Vector Pass class details -----------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef DIALECT_VECTOR_TRANSFORMS_PASSDETAIL_H_
10 #define DIALECT_VECTOR_TRANSFORMS_PASSDETAIL_H_
11 
12 #include "mlir/Dialect/Func/IR/FuncOps.h"
13 #include "mlir/Pass/Pass.h"
14 
15 namespace mlir {
16 
17 namespace bufferization {
18 class BufferizationDialect;
19 } // namespace bufferization
20 
21 namespace memref {
22 class MemRefDialect;
23 } // namespace memref
24 
25 #define GEN_PASS_CLASSES
26 #include "mlir/Dialect/Vector/Transforms/Passes.h.inc"
27 
28 } // namespace mlir
29 
30 #endif // DIALECT_VECTOR_TRANSFORMS_PASSDETAIL_H_
31