From 701b5916ababc24ca62910d6874d9d31c037ee93 Mon Sep 17 00:00:00 2001 From: Pierre Date: Sun, 30 Dec 2012 19:38:49 +0100 Subject: [PATCH] Revert "In memory of calc84." This reverts commit 539bf405f2df07e84ac0d549c4553d0b1435d231. --- Source/Core/Common/Src/x64Emitter.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/Core/Common/Src/x64Emitter.cpp b/Source/Core/Common/Src/x64Emitter.cpp index 1a74eaef80..022115a40a 100644 --- a/Source/Core/Common/Src/x64Emitter.cpp +++ b/Source/Core/Common/Src/x64Emitter.cpp @@ -1068,10 +1068,8 @@ 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); -#endif + code); #endif WriteNormalOp(this, bits, nrmMOV, a1, a2); }