mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +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
|
@ -2310,6 +2310,10 @@ thread_base::native_entry thread_base::make_trampoline(u64(*entry)(thread_base*
|
|||
c.bind(_ret);
|
||||
c.add(x86::rsp, 0x28);
|
||||
c.ret();
|
||||
#else
|
||||
UNUSED(c);
|
||||
UNUSED(args);
|
||||
UNUSED(entry);
|
||||
#endif
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue