diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-06 22:03:24 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:29 -0400 |
commit | aee11e5acc2a8e56a9c8d841ac4470d9511b5008 (patch) | |
tree | 061c117c93330233117780316243ac2bee539bef /src/process/x32 | |
parent | a8c53794a00f7a432a846cb649b4908ceba322b9 (diff) | |
download | musl-aee11e5acc2a8e56a9c8d841ac4470d9511b5008.tar.gz musl-aee11e5acc2a8e56a9c8d841ac4470d9511b5008.tar.bz2 musl-aee11e5acc2a8e56a9c8d841ac4470d9511b5008.tar.xz musl-aee11e5acc2a8e56a9c8d841ac4470d9511b5008.zip |
declare __syscall_ret as hidden in vfork asm
without this, it's plausible that assembler or linker could complain
about an unsatisfiable relocation.
Diffstat (limited to 'src/process/x32')
-rw-r--r-- | src/process/x32/vfork.s | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/process/x32/vfork.s b/src/process/x32/vfork.s index 1039f0f2..8df00582 100644 --- a/src/process/x32/vfork.s +++ b/src/process/x32/vfork.s @@ -9,4 +9,5 @@ vfork: syscall push %rdx mov %rax,%rdi + .hidden __syscall_ret jmp __syscall_ret |