diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-01 15:34:46 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-01 23:47:47 +0200 |
| commit | b46867848e4a2e8ba9965d579d4474fba1ab3b10 (patch) | |
| tree | aed1ca03e5532036c8145d683ce354f1ba4c96f3 /lib/std/debug/SelfInfo/Windows.zig | |
| parent | 771410cbf231e1a2b20e25f9d70c13d4ffeace9c (diff) | |
| download | zig-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.zig | 2 |
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 }, |
