ntdll: Add ARMv8 detection for ARM32.

This commit is contained in:
André Hentschel 2015-05-21 16:16:52 +02:00 committed by Alexandre Julliard
parent b5b34220cc
commit dec7b246f8
1 changed files with 2 additions and 0 deletions

View File

@ -1139,6 +1139,8 @@ static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
#else
FIXME("CPU Feature detection not implemented.\n");
#endif
if (info->Level >= 8)
user_shared_data->ProcessorFeatures[PF_ARM_V8_INSTRUCTIONS_AVAILABLE] = TRUE;
info->Architecture = PROCESSOR_ARCHITECTURE_ARM;
}