diff --git a/libffi/ChangeLog b/libffi/ChangeLog index 57cf35672130..23a6a7800a49 100644 --- a/libffi/ChangeLog +++ b/libffi/ChangeLog @@ -1,3 +1,8 @@ +2013-03-22 Kai Tietz + + * src/x86/win64.S: Make use of ffi_closure_win64_inner + symbol pc-relative. + 2013-03-07 Dave Korn * src/closures.c (is_emutramp_enabled [!FFI_MMAP_EXEC_EMUTRAMP_PAX]): diff --git a/libffi/src/x86/win64.S b/libffi/src/x86/win64.S index fcdb270faf58..1394cf177b69 100644 --- a/libffi/src/x86/win64.S +++ b/libffi/src/x86/win64.S @@ -295,7 +295,7 @@ SYMBOL_NAME(ffi_closure_win64): mov %rax, %rcx # context is first parameter mov %rsp, %rdx # stack is second parameter add $48, %rdx # point to start of arguments - mov $SYMBOL_NAME(ffi_closure_win64_inner), %rax + leaq SYMBOL_NAME(ffi_closure_win64_inner)(%rip), %rax callq *%rax # call the real closure function add $40, %rsp movq %rax, %xmm0 # If the closure returned a float,