diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-11-12 14:32:41 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-11-12 19:43:04 +0530 |
commit | 2581b98ecb1f2b3669a4b88a605f763fa4e85ee6 (patch) | |
tree | 5e231770b96dfa784dd7f3b6532cd4bb533a07ae /sysdeps/s390/s390-32/setjmp.S | |
parent | 533bb7c2ae156ff2d49b2e0b20b33810ba5e2721 (diff) | |
download | glibc-2581b98ecb1f2b3669a4b88a605f763fa4e85ee6.tar.gz glibc-2581b98ecb1f2b3669a4b88a605f763fa4e85ee6.tar.xz glibc-2581b98ecb1f2b3669a4b88a605f763fa4e85ee6.zip |
Use GOT instead of GOT12 all over
GOT12 is a synonym for GOT, so just use GOT everywhere for consistency. Generated code is unchanged on s390.
Diffstat (limited to 'sysdeps/s390/s390-32/setjmp.S')
-rw-r--r-- | sysdeps/s390/s390-32/setjmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/s390/s390-32/setjmp.S b/sysdeps/s390/s390-32/setjmp.S index 3ebc813e78..c0cf3abe17 100644 --- a/sysdeps/s390/s390-32/setjmp.S +++ b/sysdeps/s390/s390-32/setjmp.S @@ -76,7 +76,7 @@ ENTRY(__sigsetjmp) basr %r1,0 .L0: al %r1,.L1 - .L0(0,%r1) /* get address of global offset table */ /* get address of __sigjmp_save from got */ - l %r1,__sigjmp_save@GOT12(0,%r1) + l %r1,__sigjmp_save@GOT(%r1) br %r1 .L1: .long _GLOBAL_OFFSET_TABLE_ - .L0 #else |