Update contrib.texi
[glibc.git] / sysdeps / generic / symbol-hacks.h
blob9eaf014ff2414cfd4b27f89fc094a54c3b4d8403
1 /* Some compiler optimizations may transform loops into memset/memmove
2 calls and without proper declaration it may generate PLT calls. */
3 #if !defined __ASSEMBLER__ && !defined NOT_IN_libc && defined SHARED
4 asm ("memmove = __GI_memmove");
5 asm ("memset = __GI_memset");
6 #endif