aboutsummaryrefslogtreecommitdiff
path: root/lib/std/debug/SelfInfo/Windows.zig
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2025-10-01 15:34:46 +0200
committerAlex Rønne Petersen <alex@alexrp.com>2025-10-01 23:47:47 +0200
commitb46867848e4a2e8ba9965d579d4474fba1ab3b10 (patch)
treeaed1ca03e5532036c8145d683ce354f1ba4c96f3 /lib/std/debug/SelfInfo/Windows.zig
parent771410cbf231e1a2b20e25f9d70c13d4ffeace9c (diff)
downloadzig-b46867848e4a2e8ba9965d579d4474fba1ab3b10.tar.gz
zig-b46867848e4a2e8ba9965d579d4474fba1ab3b10.zip
std.debug: some adjustments to target handling
* driverkit handling missing in a few places. * x86-solaris is a dead target. * aarch64_be does not exist on Darwin, FreeBSD, Windows.
Diffstat (limited to 'lib/std/debug/SelfInfo/Windows.zig')
-rw-r--r--lib/std/debug/SelfInfo/Windows.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/debug/SelfInfo/Windows.zig b/lib/std/debug/SelfInfo/Windows.zig
index ffa99a27f2..f84836a6d4 100644
--- a/lib/std/debug/SelfInfo/Windows.zig
+++ b/lib/std/debug/SelfInfo/Windows.zig
@@ -88,7 +88,7 @@ pub const UnwindContext = struct {
.R15 = ctx.gprs.get(.r15),
.Rip = ctx.gprs.get(.rip),
}),
- .aarch64, .aarch64_be => .{
+ .aarch64 => .{
.ContextFlags = 0,
.Cpsr = 0,
.DUMMYUNIONNAME = .{ .X = ctx.x },