1 //===- CAPIPAsses.cpp - C API for Tranformations Passes -------------------===//
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 #include "mlir/Transforms/Passes.h"
10 #include "mlir/CAPI/Pass.h"
11 #include "mlir/Pass/Pass.h"
12 
13 using namespace mlir;
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 #include "mlir/Transforms/Transforms.capi.cpp.inc"
20 
21 #ifdef __cplusplus
22 }
23 #endif
24