Check for aarch64 as well

This commit is contained in:
Mark Dietzer 2022-03-29 10:10:57 -07:00
commit d7a652e397
2 changed files with 15 additions and 6 deletions

View file

@ -62,7 +62,7 @@ THE SOFTWARE.
#endif
// ARM64 mandates implementation of NEON
#if defined(__arm64__)
#if defined(__arm64__) || defined(__aarch64__)
#define COMPILER_HAS_SIMD_NEON
#define arm_has_neon() (true)
// ARMv7 or older, NEON is optional and autodetection is difficult