=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: ntdll: Add ARMv8 detection for ARM32.

Alexandre Julliard julliard at wine.codeweavers.com
Fri May 22 04:48:24 CDT 2015


Module: wine
Branch: master
Commit: dec7b246f8afe516206f1a34a8d9be5963f14600
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=dec7b246f8afe516206f1a34a8d9be5963f14600

Author: André Hentschel <nerv at dawncrow.de>
Date:   Thu May 21 16:16:52 2015 +0200

ntdll: Add ARMv8 detection for ARM32.

---

 dlls/ntdll/nt.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c
index 8e6ce06..2acaa83 100644
--- a/dlls/ntdll/nt.c
+++ b/dlls/ntdll/nt.c
@@ -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;
 }
 




More information about the wine-cvs mailing list