diff --git a/Utilities/JIT.h b/Utilities/JIT.h index 2e9adba152..33f4fa40b9 100644 --- a/Utilities/JIT.h +++ b/Utilities/JIT.h @@ -244,7 +244,6 @@ namespace asmjit void vec_load_unaligned(u32 esize, const Operand& v, const x86::Mem& src); void vec_store_unaligned(u32 esize, const Operand& v, const x86::Mem& dst); - void vec_partial_move(u32 esize, const Operand& dst, const Operand& src); void _vec_binary_op(x86::Inst::Id sse_op, x86::Inst::Id vex_op, x86::Inst::Id evex_op, const Operand& dst, const Operand& lhs, const Operand& rhs); diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index 56806f9898..f3fe670afd 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -5306,7 +5306,7 @@ bool ppu_initialize(const ppu_module& info, bool check_only, u64 file_s jit_write_guard jit_guard; - for (u32 i = (*work_cv)++; i < workload.size(); i = (*work_cv)++, (*work_done)++, g_progr_pdone++) + for (usz i = (*work_cv)++; i < workload.size(); i = (*work_cv)++, (*work_done)++, g_progr_pdone++) { if (cpu ? cpu->state.all_of(cpu_flag::exit) : Emu.IsStopped()) { diff --git a/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp b/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp index 8be6f71e1b..7243562c49 100644 --- a/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp +++ b/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp @@ -1809,8 +1809,8 @@ public: } u32 stride; - u32 elements; - u32 dwords; + [[maybe_unused]] u32 elements; + [[maybe_unused]] u32 dwords; if (m_use_avx512) {