diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-20 18:53:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-20 18:53:07 +0000 |
commit | 4a9b34fe010debca945da57e04c519b51140045d (patch) | |
tree | 8694647db6518cf9ab1247749b1b13f1347396e9 | |
parent | 83c9a671e8af4edfd723fe70baeefae20752a5b3 (diff) | |
download | glibc-4a9b34fe010debca945da57e04c519b51140045d.zip glibc-4a9b34fe010debca945da57e04c519b51140045d.tar.gz glibc-4a9b34fe010debca945da57e04c519b51140045d.tar.bz2 |
Avoid non pc relative reference to __fork.
-rw-r--r-- | linuxthreads/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S b/linuxthreads/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S index ce4a492..0315e6e 100644 --- a/linuxthreads/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S +++ b/linuxthreads/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S @@ -43,10 +43,10 @@ ENTRY (__vfork) 0: basr %r1,0 1: - l %r1,2f-1b(%r1) + al %r1,2f-1b(%r1) br %r1 2: - .long HIDDEN_JUMPTARGET(__fork) + .long HIDDEN_JUMPTARGET(__fork)-1b PSEUDO_END(__vfork) libc_hidden_def (__vfork) |