ir_emitter: Fix typo. ClearExlcusive -> ClearExclusive (#5)
This commit is contained in:
parent
ea157dfd52
commit
a465b2ddbc
3 changed files with 3 additions and 3 deletions
|
@ -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)});
|
||||
}
|
||||
|
||||
void IREmitter::ClearExlcusive() {
|
||||
void IREmitter::ClearExclusive() {
|
||||
Inst(Opcode::ClearExclusive, {});
|
||||
}
|
||||
|
||||
|
|
|
@ -156,7 +156,7 @@ public:
|
|||
Value FPS32ToDouble(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);
|
||||
Value ReadMemory8(const Value& vaddr);
|
||||
Value ReadMemory16(const Value& vaddr);
|
||||
|
|
|
@ -11,7 +11,7 @@ namespace Arm {
|
|||
|
||||
bool ArmTranslatorVisitor::arm_CLREX() {
|
||||
// CLREX
|
||||
ir.ClearExlcusive();
|
||||
ir.ClearExclusive();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue