From 18f96d28231c64a24111cd51832f9b39d5de42a4 Mon Sep 17 00:00:00 2001 From: OBattler Date: Tue, 2 May 2023 15:27:20 +0200 Subject: [PATCH] And that's the last softfloat warning fixed. --- src/cpu/x87_ops_sf_const.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/x87_ops_sf_const.h b/src/cpu/x87_ops_sf_const.h index 5e722ede4..708c6ff7a 100644 --- a/src/cpu/x87_ops_sf_const.h +++ b/src/cpu/x87_ops_sf_const.h @@ -21,7 +21,7 @@ sf_FLDL2T(uint32_t fetchdat) FPU_stack_overflow(fetchdat); else { FPU_push(); - FPU_save_regi(FPU_round_const(Const_L2T, (fpu_state.cwd & FPU_CW_RC) == X87_ROUNDING_UP), 0); + FPU_save_regi(FPU_round_const(Const_L2T, (fpu_state.cwd & FPU_CW_RC) == FPU_RC_UP), 0); } CLOCK_CYCLES_FPU((fpu_type >= FPU_487SX) ? (x87_timings.fld_const) : (x87_timings.fld_const * cpu_multi)); CONCURRENCY_CYCLES((fpu_type >= FPU_487SX) ? (x87_concurrency.fld_const) : (x87_concurrency.fld_const * cpu_multi));