diff options
Diffstat (limited to 'runtime/arch/memcmp16.h')
| -rw-r--r-- | runtime/arch/memcmp16.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/memcmp16.h b/runtime/arch/memcmp16.h index 65d2f92d74..14dc1e3880 100644 --- a/runtime/arch/memcmp16.h +++ b/runtime/arch/memcmp16.h @@ -30,7 +30,7 @@ // // In both cases, MemCmp16 is declared. -#if defined(__aarch64__) || defined(__arm__) || defined(__mips) || defined(__i386__) +#if defined(__aarch64__) || defined(__arm__) || defined(__mips) || defined(__i386__) || defined(__x86_64__) extern "C" uint32_t __memcmp16(const uint16_t* s0, const uint16_t* s1, size_t count); #define MemCmp16 __memcmp16 |