mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
a2be1b476a
* DecayOp - array or function to pointer decay. Not shown in C. * BitCastOp - bit-preserving conversion. Emitted as bit_cast if necessary. * ExtendOp - zero- or sign-extending conversion from any integer type to any wider integer type. * TruncateOp - truncating conversion from any integer type to any narrower integer type. * PtrResizeOp - resizes a pointer without changing its pointee type.
15 lines
387 B
TableGen
15 lines
387 B
TableGen
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#ifndef MLIR_CLIFT_OP_INTERFACES
|
|
#define MLIR_CLIFT_OP_INTERFACES
|
|
|
|
// The MLIR tablegen tool emits declarations in alphabetical order, causing
|
|
// incorrect emission of interface hierarchies.
|
|
|
|
include "revng/Clift/CliftOpInterfacesControlFlow.td"
|
|
include "revng/Clift/CliftOpInterfacesExpr.td"
|
|
|
|
#endif
|