Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
In memory of calc84.
  • Loading branch information
Parlane committed Dec 30, 2012
1 parent 30dd9c2 commit 539bf40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/Core/Common/Src/x64Emitter.cpp
Expand Up @@ -1068,8 +1068,10 @@ void XEmitter::XOR (int bits, const OpArg &a1, const OpArg &a2) {WriteNormalOp(t
void XEmitter::MOV (int bits, const OpArg &a1, const OpArg &a2)
{
#ifdef _DEBUG
#ifndef _M_X64
_assert_msg_(DYNA_REC, !a1.IsSimpleReg() || !a2.IsSimpleReg() || a1.GetSimpleReg() != a2.GetSimpleReg(), "Redundant MOV @ %p - bug in JIT?",
code);
code);
#endif
#endif
WriteNormalOp(this, bits, nrmMOV, a1, a2);
}
Expand Down

0 comments on commit 539bf40

Please sign in to comment.