ARM: Avoid memcpy() in MurmurHash64A() if we are using 64 bit ARM.

However note that in architectures supporting 64 bit unaligned
accesses memcpy(...,...,8) is likely translated to a simple
word memory movement anyway.
This commit is contained in:
Salvatore Sanfilippo
2017-02-19 14:59:39 +00:00
parent 1e272a6b52
commit 72d6d64771
3 changed files with 5 additions and 1 deletions

View File

@ -211,5 +211,8 @@ void setproctitle(const char *fmt, ...);
#if defined(__arm) && !defined(__arm__)
#define __arm__
#endif
#if defined (__aarch64__) && !defined(__arm64__)
#define __arm64__
#endif
#endif