From 8ff104380d76e86302061c1cf8adf565bb3df1b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 3 Apr 2025 02:49:46 +0200 Subject: [PATCH] std.os.windows.PF: Add ARM_V83_LRCPC_INSTRUCTIONS_AVAILABLE. --- lib/std/os/windows.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/std/os/windows.zig b/lib/std/os/windows.zig index 018f214144..77bd8ea2f4 100644 --- a/lib/std/os/windows.zig +++ b/lib/std/os/windows.zig @@ -5315,6 +5315,9 @@ pub const PF = enum(DWORD) { /// This ARM processor implements the ARM v8.3 JavaScript conversion (JSCVT) instructions. ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE = 44, + + /// This Arm processor implements the Arm v8.3 LRCPC instructions (for example, LDAPR). Note that certain Arm v8.2 CPUs may optionally support the LRCPC instructions. + ARM_V83_LRCPC_INSTRUCTIONS_AVAILABLE, }; pub const MAX_WOW64_SHARED_ENTRIES = 16;