rpcrt4: Fixed asm syntax for rep; movsl.
This commit is contained in:
parent
52e384f9fb
commit
49c7bbe0de
|
@ -973,7 +973,7 @@ __ASM_GLOBAL_FUNC(call_server_func,
|
||||||
"movl 12(%ebp), %esi\n\t"
|
"movl 12(%ebp), %esi\n\t"
|
||||||
"shrl $2, %ecx\n\t" /* divide by 4 */
|
"shrl $2, %ecx\n\t" /* divide by 4 */
|
||||||
"cld\n\t"
|
"cld\n\t"
|
||||||
"rep movsl\n\t" /* Copy dword blocks */
|
"rep; movsl\n\t" /* Copy dword blocks */
|
||||||
"call *8(%ebp)\n\t" /* Call function */
|
"call *8(%ebp)\n\t" /* Call function */
|
||||||
"leal -8(%ebp), %esp\n\t" /* Restore stack */
|
"leal -8(%ebp), %esp\n\t" /* Restore stack */
|
||||||
"popl %esi\n\t" /* Restore registers */
|
"popl %esi\n\t" /* Restore registers */
|
||||||
|
|
Loading…
Reference in New Issue