brintos

brintos / llvm-project-archived public Read only

0
0
Text · 717 B · 715de3e Raw
23 lines · c
1//===-- mlir-c/Transforms.h - Helpers for C API to Core MLIR ------*- C -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM4// Exceptions.5// See https://llvm.org/LICENSE.txt for license information.6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7//8//===----------------------------------------------------------------------===//9//10// This header declares the registration and creation method for11// transformation passes.12//13//===----------------------------------------------------------------------===//14 15#ifndef MLIR_C_TRANSFORMS_H16#define MLIR_C_TRANSFORMS_H17 18#include "mlir-c/Support.h"19 20#include "mlir/Transforms/Transforms.capi.h.inc"21 22#endif // MLIR_C_TRANSFORMS_H23