rabbitizer/include/analysis/RabbitizerLoPairingInfo.h
2022-09-13 14:05:42 -03:00

26 lines
468 B
C

/* SPDX-FileCopyrightText: © 2022 Decompollaborate */
/* SPDX-License-Identifier: MIT */
#ifndef RABBITIZER_LO_PAIRING_INFO_H
#define RABBITIZER_LO_PAIRING_INFO_H
#pragma once
#include <stdbool.h>
#include "common/Utils.h"
typedef struct RabbitizerLoPairingInfo {
bool shouldProcess;
int instrOffset;
bool isGpRel;
bool isGpLoad;
} RabbitizerLoPairingInfo;
NON_NULL(1)
void RabbitizerLoPairingInfo_Init(RabbitizerLoPairingInfo *self);
#endif