Module: wine Branch: refs/heads/master Commit: 49c7bbe0de8a03919282ea4351a5e6ea4cfac4d7 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=49c7bbe0de8a03919282ea43...
Author: Alexandre Julliard julliard@winehq.org Date: Sat Jan 14 17:07:28 2006 +0100
rpcrt4: Fixed asm syntax for rep; movsl.
---
dlls/rpcrt4/ndr_stubless.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/rpcrt4/ndr_stubless.c b/dlls/rpcrt4/ndr_stubless.c index 32d8766..b083d2a 100644 --- a/dlls/rpcrt4/ndr_stubless.c +++ b/dlls/rpcrt4/ndr_stubless.c @@ -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 */