diff options
author | Wainer dos Santos Moschetta <wainersm@linux.vnet.ibm.com> | 2017-04-11 14:18:34 -0300 |
---|---|---|
committer | Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com> | 2017-04-11 17:13:31 -0300 |
commit | dbcc7d089390f53ec90c1cbd3bea165b924a023a (patch) | |
tree | 9ce610761c13ba8263d62255b44a615ce58688bb /sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S | |
parent | d031600dd2e8381e9cd2ccc20c4ce94a04f04eaf (diff) | |
download | glibc-dbcc7d089390f53ec90c1cbd3bea165b924a023a.tar.gz glibc-dbcc7d089390f53ec90c1cbd3bea165b924a023a.tar.xz glibc-dbcc7d089390f53ec90c1cbd3bea165b924a023a.zip |
powerpc: refactor stpcpy, stpncpy, strcpy, and strncpy IFUNC.
Clean up the IFUNC implementations for powerpc in order to remove unneeded macro definitions. Tested on ppc64le with and without --disable-multi-arch flag. * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power8.S: Define the implementation-specific function name and remove unneeded macros definition. * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: Likewise. * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: Likewise. * sysdeps/powerpc/powerpc64/multiarch/strcpy-power8.S: Likewise. * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: Likewise. * sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S: Likewise. * sysdeps/powerpc/powerpc64/power7/strncpy.S: Set a default function name if not defined. * sysdeps/powerpc/powerpc64/power8/strcpy.S: Likewise. * sysdeps/powerpc/powerpc64/power8/strncpy.S: Likewise.
Diffstat (limited to 'sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S')
-rw-r--r-- | sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S b/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S index ff6d3ddc7e..6ce706a879 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S +++ b/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S @@ -20,21 +20,7 @@ #define USE_AS_STPNCPY -#undef EALIGN -#define EALIGN(name, alignt, words) \ - .section ".text"; \ - ENTRY_2(__stpncpy_power8) \ - .align ALIGNARG(alignt); \ - EALIGN_W_##words; \ - BODY_LABEL(__stpncpy_power8): \ - cfi_startproc; \ - LOCALENTRY(__stpncpy_power8) - -#undef END -#define END(name) \ - cfi_endproc; \ - TRACEBACK(__stpncpy_power8) \ - END_2(__stpncpy_power8) +#define STPNCPY __stpncpy_power8 #undef libc_hidden_builtin_def #define libc_hidden_builtin_def(name) |