llvm/mlir/test/CAPI/rewrite.c

//===- rewrite.c - Test of the rewriting C API ----------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

// RUN: mlir-capi-rewrite-test 2>&1 | FileCheck %s

#include "mlir-c/Rewrite.h"
#include "mlir-c/BuiltinTypes.h"
#include "mlir-c/IR.h"

#include <assert.h>
#include <stdio.h>

MlirOperation createOperationWithName(MlirContext ctx, const char *name) {}

void testInsertionPoint(MlirContext ctx) {}

void testCreateBlock(MlirContext ctx) {}

void testInlineRegionBlock(MlirContext ctx) {}

void testReplaceOp(MlirContext ctx) {}

void testErase(MlirContext ctx) {}

void testMove(MlirContext ctx) {}

void testOpModification(MlirContext ctx) {}

void testReplaceUses(MlirContext ctx) {}

int main(void) {}