mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
24 lines
521 B
C++
24 lines
521 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "mlir/IR/BuiltinOps.h"
|
|
#include "mlir/IR/Dialect.h"
|
|
|
|
#include "revng/Clift/CliftInterfaces.h"
|
|
#include "revng/Support/Debug.h"
|
|
|
|
namespace clift {
|
|
|
|
struct CliftDialectImpl;
|
|
|
|
} // namespace clift
|
|
|
|
// Preserve ordering:
|
|
#include "revng/Clift/CliftDialect.h.inc"
|
|
|
|
void dumpMlirOp(mlir::Operation *Module, const char *Path) debug_function;
|
|
void dumpMlirModule(mlir::ModuleOp Module, const char *Path) debug_function;
|