backend/arm64: Implement A32ClearExclusive
This commit is contained in:
parent
9bdff6a9aa
commit
3a3b43b963
1 changed files with 2 additions and 5 deletions
|
@ -19,11 +19,8 @@ namespace Dynarmic::Backend::Arm64 {
|
||||||
using namespace oaknut::util;
|
using namespace oaknut::util;
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
void EmitIR<IR::Opcode::A32ClearExclusive>(oaknut::CodeGenerator& code, EmitContext& ctx, IR::Inst* inst) {
|
void EmitIR<IR::Opcode::A32ClearExclusive>(oaknut::CodeGenerator& code, EmitContext&, IR::Inst*) {
|
||||||
(void)code;
|
code.STR(WZR, Xstate, offsetof(A32JitState, exclusive_state));
|
||||||
(void)ctx;
|
|
||||||
(void)inst;
|
|
||||||
ASSERT_FALSE("Unimplemented");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
|
|
Loading…
Reference in a new issue