This is an automated email from the ASF dual-hosted git repository.

damjan pushed a commit to branch windows-amd64
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 4e415bad083893ef13b15edae70e5b3baf1346d7
Author: Damjan Jovanovic <dam...@apache.org>
AuthorDate: Tue Jan 28 06:06:51 2025 +0200

    We copy 8 bytes at a time, not 1.
    
    Patch by: me
---
 main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm 
b/main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm
index e359ae1835..2136345317 100644
--- a/main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm
+++ b/main/bridges/source/cpp_uno/msvc_win64_x86-64/call.asm
@@ -149,7 +149,7 @@ callVirtualMethod PROC FRAME
        jz populateArgumentRegisters
        inc eax
        shr eax, 1
-       shl eax, 4
+       shl eax, 1
 
        mov r10, rax
        add rax, 48[rbp]

Reply via email to