diff --git a/tcctok.h b/tcctok.h index 3de3ae2..31b6dae 100644 --- a/tcctok.h +++ b/tcctok.h @@ -162,6 +162,7 @@ /* builtin functions or variables */ #ifndef TCC_ARM_EABI DEF(TOK_memcpy, "memcpy") + DEF(TOK_memmove, "memmove") DEF(TOK_memset, "memset") DEF(TOK___divdi3, "__divdi3") DEF(TOK___moddi3, "__moddi3") @@ -185,6 +186,7 @@ DEF(TOK_memcpy, "__aeabi_memcpy") DEF(TOK_memcpy4, "__aeabi_memcpy4") DEF(TOK_memcpy8, "__aeabi_memcpy8") + DEF(TOK_memmove, "__aeabi_memmove") DEF(TOK_memset, "__aeabi_memset") DEF(TOK___aeabi_ldivmod, "__aeabi_ldivmod") DEF(TOK___aeabi_uldivmod, "__aeabi_uldivmod") @@ -294,7 +296,6 @@ DEF(TOK_memalign, "memalign") DEF(TOK_calloc, "calloc") # endif - DEF(TOK_memmove, "memmove") DEF(TOK_strlen, "strlen") DEF(TOK_strcpy, "strcpy") #endif