mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
Fix compiler warnings about unused args for aarch64
This commit is contained in:
parent
fbcd8e32b8
commit
c2f5de1c55
7 changed files with 23 additions and 4 deletions
|
@ -848,6 +848,8 @@ const auto spu_putllc_tx = build_function_asm<u64(*)(u32 raddr, u64 rtime, void*
|
|||
maybe_flush_lbr(c);
|
||||
c.ret();
|
||||
#else
|
||||
UNUSED(args);
|
||||
|
||||
c.brk(Imm(0x42));
|
||||
c.ret(a64::x30);
|
||||
#endif
|
||||
|
@ -972,6 +974,8 @@ const auto spu_putlluc_tx = build_function_asm<u64(*)(u32 raddr, const void* rda
|
|||
maybe_flush_lbr(c);
|
||||
c.ret();
|
||||
#else
|
||||
UNUSED(args);
|
||||
|
||||
c.brk(Imm(0x42));
|
||||
c.ret(a64::x30);
|
||||
#endif
|
||||
|
@ -1105,6 +1109,8 @@ const auto spu_getllar_tx = build_function_asm<u64(*)(u32 raddr, void* rdata, cp
|
|||
maybe_flush_lbr(c);
|
||||
c.ret();
|
||||
#else
|
||||
UNUSED(args);
|
||||
|
||||
c.brk(Imm(0x42));
|
||||
c.ret(a64::x30);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue