diff options
author | Stefan Liebler <stli@linux.vnet.ibm.com> | 2015-01-16 09:17:32 +0100 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2015-01-16 09:17:32 +0100 |
commit | 1d53248326dbd3c620a2bca16d35eff3019d900a (patch) | |
tree | 0a1fc9df0fd77039c5086acbcbe98183cfb64521 /sysdeps/s390/s390-64/multiarch/memset.S | |
parent | 53fbd16918791258ebc1684b1a1afd543b814780 (diff) | |
download | glibc-1d53248326dbd3c620a2bca16d35eff3019d900a.tar.gz glibc-1d53248326dbd3c620a2bca16d35eff3019d900a.tar.xz glibc-1d53248326dbd3c620a2bca16d35eff3019d900a.zip |
S390: Get rid of linknamespace failures for string functions.
Diffstat (limited to 'sysdeps/s390/s390-64/multiarch/memset.S')
-rw-r--r-- | sysdeps/s390/s390-64/multiarch/memset.S | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sysdeps/s390/s390-64/multiarch/memset.S b/sysdeps/s390/s390-64/multiarch/memset.S index 74345c01e8..3ac110a7e0 100644 --- a/sysdeps/s390/s390-64/multiarch/memset.S +++ b/sysdeps/s390/s390-64/multiarch/memset.S @@ -29,7 +29,7 @@ #if IS_IN (libc) -ENTRY(memset_z196) +ENTRY(__memset_z196) .machine "z196" ltgr %r4,%r4 je .L_Z196_4 @@ -47,7 +47,7 @@ ENTRY(memset_z196) br %r14 .L_Z196_1: cgfi %r5,1048576 - jh memset_mvcle # Switch to mvcle for >256MB + jh __memset_mvcle # Switch to mvcle for >256MB .L_Z196_2: pfd 2,1024(%r1) mvc 1(256,%r1),0(%r1) @@ -57,9 +57,9 @@ ENTRY(memset_z196) j .L_Z196_3 .L_Z196_17: mvc 1(1,%r1),0(%r1) -END(memset_z196) +END(__memset_z196) -ENTRY(memset_z10) +ENTRY(__memset_z10) .machine "z10" cgije %r4,0,.L_Z10_4 stc %r3,0(%r2) @@ -74,7 +74,7 @@ ENTRY(memset_z10) br %r14 .L_Z10_15: cgfi %r5,163840 # Switch to mvcle for >40MB - jh memset_mvcle + jh __memset_mvcle .L_Z10_14: pfd 2,1024(%r1) mvc 1(256,%r1),0(%r1) @@ -83,9 +83,9 @@ ENTRY(memset_z10) j .L_Z10_3 .L_Z10_18: mvc 1(1,%r1),0(%r1) -END(memset_z10) +END(__memset_z10) -ENTRY(memset_mvcle) +ENTRY(__memset_mvcle) aghi %r4,2 # take back the change done by the caller lgr %r0,%r2 # save source address lgr %r1,%r3 # move pad byte to R1 @@ -97,7 +97,7 @@ ENTRY(memset_mvcle) lgr %r2,%r0 # return value is source address .L1: br %r14 -END(memset_mvcle) +END(__memset_mvcle) #endif @@ -105,5 +105,5 @@ END(memset_mvcle) #if !IS_IN (libc) .globl memset -.set memset,memset_z900 +.set memset,__memset_z900 #endif |