/* SPDX-FileCopyrightText: © 2022 Decompollaborate */ /* SPDX-License-Identifier: MIT */ #ifndef RABBITIZER_LO_PAIRING_INFO_H #define RABBITIZER_LO_PAIRING_INFO_H #pragma once #include #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