Merge pull request #64 from pier2013/patch-1

Update x64.inc
This commit is contained in:
Carlo Kok 2013-11-04 12:22:15 -08:00
commit 555cc40c27

View File

@ -55,7 +55,8 @@ asm
movd xmm2,_XMM2
movd xmm3,_XMM3
{$ELSE}
movsd xmm0,[_XMM0]
mov rax, [_XMM0]
movsd xmm0, qword ptr [rax]
movsd xmm1,_XMM1
movsd xmm2,_XMM2
movsd xmm3,_XMM3
@ -79,7 +80,8 @@ asm
{$IFDEF FPC}
movd [_XMM0],xmm0
{$ELSE}
movsd [_XMM0],xmm0
mov rax, [_XMM0]
movsd qword ptr [rax], xmm0
{$ENDIF}
pop r9