Commit 49c7bbe0 authored by Alexandre Julliard's avatar Alexandre Julliard

rpcrt4: Fixed asm syntax for rep; movsl.

parent 52e384f9
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment