mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
eaf1bf35aa
Old syntax: ``` !clift.primitive<SignedKind 8> !clift.primitive<is_const = true, SignedKind 8> ``` New syntax: ``` !clift.primitive<signed 8> !clift.primitive<const signed 8> ```
11 lines
216 B
MLIR
11 lines
216 B
MLIR
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
// RUN: %revngcliftopt %s
|
|
|
|
!int32_t = !clift.primitive<signed 4>
|
|
|
|
%lvalue = clift.local !int32_t "x"
|
|
clift.inc %lvalue : !int32_t
|