Recognize the MSVC ARM64 compiler arch identification

This commit is contained in:
Martin Storsjo 2018-09-02 00:17:48 +03:00
parent 4cdeed63b4
commit b51c73991c
1 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ amm-info@iis.fraunhofer.de
#define __x86__
#endif
#if defined(_M_ARM) && !defined(__arm__) || defined(__aarch64__)
#if defined(_M_ARM) && !defined(__arm__) || defined(__aarch64__) || defined(_M_ARM64)
#define __arm__
#endif
@ -162,7 +162,7 @@ amm-info@iis.fraunhofer.de
#define __ARM_ARCH_7EM__
#endif
#if defined(__aarch64__)
#if defined(__aarch64__) || defined(_M_ARM64)
#define __ARM_ARCH_8__
#endif