Assorted warning fixes

This commit is contained in:
Jasmine Iwanek
2025-01-26 15:15:53 -05:00
parent a5bf0dc9c8
commit 5f273265ae
136 changed files with 1374 additions and 1291 deletions

View File

@@ -313,7 +313,7 @@
return 0; \
} \
\
static int op##name##_EAX_imm(uint32_t fetchdat) \
static int op##name##_EAX_imm(UNUSED(uint32_t fetchdat)) \
{ \
uint32_t dst = EAX; \
uint32_t src = getlong(); \
@@ -581,7 +581,7 @@ opCMP_AX_imm(uint32_t fetchdat)
}
static int
opCMP_EAX_imm(uint32_t fetchdat)
opCMP_EAX_imm(UNUSED(uint32_t fetchdat))
{
uint32_t src = getlong();
@@ -747,7 +747,7 @@ opTEST_AX(uint32_t fetchdat)
return 0;
}
static int
opTEST_EAX(uint32_t fetchdat)
opTEST_EAX(UNUSED(uint32_t fetchdat))
{
uint32_t temp = getlong();
if (cpu_state.abrt)