mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 07:29:59 +01:00
ir_emitter: Fix typo. ClearExlcusive -> ClearExclusive (#5)
This commit is contained in:
parent
ea157dfd52
commit
a465b2ddbc
@ -471,7 +471,7 @@ Value IREmitter::FPU32ToDouble(const Value& a, bool round_to_nearest, bool fpscr
|
|||||||
return Inst(Opcode::FPU32ToDouble, {a, Imm1(round_to_nearest)});
|
return Inst(Opcode::FPU32ToDouble, {a, Imm1(round_to_nearest)});
|
||||||
}
|
}
|
||||||
|
|
||||||
void IREmitter::ClearExlcusive() {
|
void IREmitter::ClearExclusive() {
|
||||||
Inst(Opcode::ClearExclusive, {});
|
Inst(Opcode::ClearExclusive, {});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -156,7 +156,7 @@ public:
|
|||||||
Value FPS32ToDouble(const Value& a, bool round_to_nearest, bool fpscr_controlled);
|
Value FPS32ToDouble(const Value& a, bool round_to_nearest, bool fpscr_controlled);
|
||||||
Value FPU32ToDouble(const Value& a, bool round_to_nearest, bool fpscr_controlled);
|
Value FPU32ToDouble(const Value& a, bool round_to_nearest, bool fpscr_controlled);
|
||||||
|
|
||||||
void ClearExlcusive();
|
void ClearExclusive();
|
||||||
void SetExclusive(const Value& vaddr, size_t byte_size);
|
void SetExclusive(const Value& vaddr, size_t byte_size);
|
||||||
Value ReadMemory8(const Value& vaddr);
|
Value ReadMemory8(const Value& vaddr);
|
||||||
Value ReadMemory16(const Value& vaddr);
|
Value ReadMemory16(const Value& vaddr);
|
||||||
|
|||||||
@ -11,7 +11,7 @@ namespace Arm {
|
|||||||
|
|
||||||
bool ArmTranslatorVisitor::arm_CLREX() {
|
bool ArmTranslatorVisitor::arm_CLREX() {
|
||||||
// CLREX
|
// CLREX
|
||||||
ir.ClearExlcusive();
|
ir.ClearExclusive();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user