mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
f0091e699f
A new dialect attribute is instead used to verify mlir::ModuleOp:
```
module attributes {clift.module} {
}
```
16 lines
391 B
C++
16 lines
391 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/Utils/CTarget.h"
|
|
|
|
namespace mlir::clift {
|
|
|
|
mlir::LogicalResult verifyCSemantics(mlir::ModuleOp Module,
|
|
const TargetCImplementation &Target);
|
|
|
|
} // namespace mlir::clift
|