diff --git a/Source/Core/Common/Src/x64Emitter.cpp b/Source/Core/Common/Src/x64Emitter.cpp index da7d75c20e..dff1847e9c 100644 --- a/Source/Core/Common/Src/x64Emitter.cpp +++ b/Source/Core/Common/Src/x64Emitter.cpp @@ -1155,16 +1155,15 @@ namespace Gen void MOVDDUP(X64Reg regOp, OpArg arg) { - // TODO(ector): check SSE3 flag if (cpu_info.bSSE3) { - WriteSSEOp(64, 0x12, false, regOp, arg); //SSE3 + WriteSSEOp(64, 0x12, false, regOp, arg); //SSE3 movddup } else { // Simulate this instruction with SSE2 instructions if (!arg.IsSimpleReg(regOp)) - MOVAPD(regOp, arg); + MOVQ_xmm(regOp, arg); UNPCKLPD(regOp, R(regOp)); } }