Fix some warnings
This commit is contained in:
@@ -244,7 +244,6 @@ namespace asmjit
|
|||||||
|
|
||||||
void vec_load_unaligned(u32 esize, const Operand& v, const x86::Mem& src);
|
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_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);
|
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);
|
||||||
|
|
||||||
|
|||||||
@@ -5306,7 +5306,7 @@ bool ppu_initialize(const ppu_module<lv2_obj>& info, bool check_only, u64 file_s
|
|||||||
|
|
||||||
jit_write_guard jit_guard;
|
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())
|
if (cpu ? cpu->state.all_of(cpu_flag::exit) : Emu.IsStopped())
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1809,8 +1809,8 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
u32 stride;
|
u32 stride;
|
||||||
u32 elements;
|
[[maybe_unused]] u32 elements;
|
||||||
u32 dwords;
|
[[maybe_unused]] u32 dwords;
|
||||||
|
|
||||||
if (m_use_avx512)
|
if (m_use_avx512)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user