ir_emitter: Fix typo. ClearExlcusive -> ClearExclusive (#5)

This commit is contained in:
Mat M 2016-09-02 07:17:22 -04:00 committed by Merry
parent ea157dfd52
commit a465b2ddbc
3 changed files with 3 additions and 3 deletions

View file

@ -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, {});
} }

View file

@ -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);

View file

@ -11,7 +11,7 @@ namespace Arm {
bool ArmTranslatorVisitor::arm_CLREX() { bool ArmTranslatorVisitor::arm_CLREX() {
// CLREX // CLREX
ir.ClearExlcusive(); ir.ClearExclusive();
return true; return true;
} }