FPU: Fix newly-introduced x87-related warnings.

This commit is contained in:
OBattler
2025-03-06 00:12:45 +01:00
parent 2300339588
commit 9b47522f43
3 changed files with 12 additions and 2 deletions

View File

@@ -801,6 +801,8 @@ next_ins:
return 0;
}
#ifndef FPU_8087
#ifndef OPS_286_386
static int
sf_FRINT2(uint32_t fetchdat)
{
@@ -854,6 +856,7 @@ next_ins:
CONCURRENCY_CYCLES((fpu_type >= FPU_487SX) ? (x87_concurrency.frndint) : (x87_concurrency.frndint * cpu_multi));
return 0;
}
#endif
static int
sf_FRICHOP(uint32_t fetchdat)
@@ -881,3 +884,4 @@ next_ins:
CONCURRENCY_CYCLES((fpu_type >= FPU_487SX) ? (x87_concurrency.frndint) : (x87_concurrency.frndint * cpu_multi));
return 0;
}
#endif