diff options
| author | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-11-05 19:34:58 +0000 |
|---|---|---|
| committer | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-11-05 19:37:04 +0000 |
| commit | eb00777309f1d1ab3993720b52d8c33bee92b5d0 (patch) | |
| tree | 4cab6862b9b0a6e7b25553f850d57bacea4bbed7 | |
| parent | 7f0b798418c18fba7164515842f222ab6765a0b0 (diff) | |
| download | tinycc-eb00777309f1d1ab3993720b52d8c33bee92b5d0.tar.gz tinycc-eb00777309f1d1ab3993720b52d8c33bee92b5d0.tar.bz2 | |
tcctok.h: Put TOK_memmove in the correct places (I hope).
This should have been part of b051549. Someone should test on ARM.
| -rw-r--r-- | tcctok.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |
