Common/CPUDetect: Use consistant naming for ARM targets

This commit is contained in:
Connor McLaughlin
2020-11-21 01:52:39 +10:00
parent 302b08023e
commit dba42cf323
2 changed files with 5 additions and 3 deletions

View File

@ -8,6 +8,8 @@
#define CPU_X86 1
#elif defined(_M_ARM64)
#define CPU_AARCH64 1
#elif defined(_M_ARM)
#define CPU_AARCH32 1
#else
#error Unknown architecture.
#endif
@ -21,7 +23,7 @@
#elif defined(__aarch64__)
#define CPU_AARCH64 1
#elif defined(__arm__)
#define CPU_ARM 1
#define CPU_AARCH32 1
#else
#error Unknown architecture.
#endif