rpcrt4: Fixed asm syntax for rep; movsl.

This commit is contained in:
Alexandre Julliard 2006-01-14 17:07:28 +01:00
parent 52e384f9fb
commit 49c7bbe0de
1 changed files with 1 additions and 1 deletions

View File

@ -973,7 +973,7 @@ __ASM_GLOBAL_FUNC(call_server_func,
"movl 12(%ebp), %esi\n\t"
"shrl $2, %ecx\n\t" /* divide by 4 */
"cld\n\t"
"rep movsl\n\t" /* Copy dword blocks */
"rep; movsl\n\t" /* Copy dword blocks */
"call *8(%ebp)\n\t" /* Call function */
"leal -8(%ebp), %esp\n\t" /* Restore stack */
"popl %esi\n\t" /* Restore registers */