mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2025-01-01 00:17:32 +00:00
15 lines
365 B
Plaintext
15 lines
365 B
Plaintext
/* SPDX-FileCopyrightText: © 2022-2023 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#define RAB_DEF_INSTRSUFFIX(prefix, name) RABINSTRSUFFIX_##prefix##_##name,
|
|
|
|
typedef enum RabbitizerInstrSuffix {
|
|
RAB_DEF_INSTRSUFFIX(ALL, NONE)
|
|
|
|
#include "InstrSuffix.inc"
|
|
|
|
RAB_DEF_INSTRSUFFIX(ALL, MAX)
|
|
} RabbitizerInstrSuffix;
|
|
|
|
#undef RAB_DEF_INSTRSUFFIX
|