mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
19 lines
417 B
C++
19 lines
417 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "mlir/IR/OpDefinition.h"
|
|
|
|
#include "revng/mlir/Dialect/Clift/IR/CliftTypes.h"
|
|
|
|
// This comment prevents reordering this include before the others.
|
|
#include "revng/mlir/Dialect/Clift/IR/CliftOpInterfaces.h.inc"
|
|
|
|
namespace mlir::clift {
|
|
|
|
bool isLvalueExpression(mlir::Value Value);
|
|
|
|
} // namespace mlir::clift
|