Files
clang-p2996/mlir/include/mlir-c/Conversion.h
Mehdi Amini 86c8a7857d Add C bindings for mlir::ExecutionEngine
This adds minimalistic bindings for the execution engine, allowing to
invoke the JIT from the C API. This is still quite early and
experimental and shouldn't be considered stable in any way.

Differential Revision: https://reviews.llvm.org/D96651
2021-03-03 18:19:40 +00:00

23 lines
712 B
C

//===-- mlir-c/Conversion.h - Conversion passes initialization ----*- C -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This header declares the registration and creation method for conversion
// passes.
//
//===----------------------------------------------------------------------===//
#ifndef MLIR_C_CONVERSIONS_H
#define MLIR_C_CONVERSIONS_H
#include "mlir-c/Support.h"
#include "mlir/Conversion/Passes.capi.h.inc"
#endif // MLIR_C_CONVERSIONS_H