diff options
author | Kai Tietz <ktietz@redhat.com> | 2013-03-22 10:38:55 +0100 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2013-03-22 10:38:55 +0100 |
commit | 8280eba03b7fd7918058a6e1af51b014850909f3 (patch) | |
tree | 2e6b7d6106dcba32051d6efc757c5e79155f45b3 /libffi/src/x86 | |
parent | 15d19bf8d041f6afcf951f1bd130f36947634467 (diff) | |
download | gcc-8280eba03b7fd7918058a6e1af51b014850909f3.tar.gz |
win64.S: Make use of ffi_closure_win64_inner symbol pc-relative.
* src/x86/win64.S: Make use of ffi_closure_win64_inner
symbol pc-relative.
From-SVN: r196900
Diffstat (limited to 'libffi/src/x86')
-rw-r--r-- | libffi/src/x86/win64.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libffi/src/x86/win64.S b/libffi/src/x86/win64.S index fcdb270faf5..1394cf177b6 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, |