Changed to pass the build with Visual Studio 2005

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4074 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jwang36
2007-10-10 07:03:04 +00:00
parent 1b86875186
commit 15d10a4c78
2 changed files with 6 additions and 6 deletions

View File

@@ -40,9 +40,9 @@ InternalMemSetMem64 PROC
mov ecx, [esp + 8] ; ecx <- Count
test al, 8
mov edx, eax
movq xmm0, [esp + 12]
movq xmm0, qword ptr [esp + 12]
jz @F
movq [edx], xmm0
movq qword ptr [edx], xmm0
add edx, 8
dec ecx
@@:
@@ -56,7 +56,7 @@ InternalMemSetMem64 PROC
mfence
@SetQwords:
jnc @F
movq [edx], xmm0
movq qword ptr [edx], xmm0
@@:
ret
InternalMemSetMem64 ENDP