Move x86_64 compat-timer.h out of nptl/
[glibc.git] / sysdeps / generic / symbol-hacks.h
blob6bec24b7a017e27ecfc4b388faa05135ca038aab
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 asm ("memcpy = __GI_memcpy");
7 #endif