Files
clang-p2996/mlir/lib/CAPI/Transforms/Passes.cpp
Alex Zinenko bb9b5d3971 Revert "[mlir][CAPI] Proposal: Always building a libMLIRPublicAPI.so."
This reverts commit 80fe2f61fa.

Broke linkage with GNU ld. See original review thread for more details.
2020-11-06 18:59:58 +01:00

24 lines
606 B
C++

//===- CAPIPAsses.cpp - C API for Tranformations Passes -------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "mlir/Transforms/Passes.h"
#include "mlir/CAPI/Pass.h"
#include "mlir/Pass/Pass.h"
using namespace mlir;
#ifdef __cplusplus
extern "C" {
#endif
#include "mlir/Transforms/Transforms.capi.cpp.inc"
#ifdef __cplusplus
}
#endif