mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
22 lines
575 B
C++
22 lines
575 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/mlir/Dialect/Clift/IR/CliftOps.h"
|
|
#include "revng/mlir/Dialect/Clift/Transforms/ModelOption.h"
|
|
|
|
namespace mlir::clift {
|
|
|
|
#define GEN_PASS_DECL
|
|
#include "revng/mlir/Dialect/Clift/Transforms/Passes.h.inc"
|
|
|
|
std::unique_ptr<OperationPass<clift::ModuleOp>> createVerifyCPass();
|
|
std::unique_ptr<OperationPass<clift::ModuleOp>> createEmitCPass();
|
|
|
|
#define GEN_PASS_REGISTRATION
|
|
#include "revng/mlir/Dialect/Clift/Transforms/Passes.h.inc"
|
|
|
|
} // namespace mlir::clift
|