authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-05-26 23:42:04+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-05-27 00:28:00+02:00
log833c6d97927da6919ae6d68c774d9a872225c58d
treeb45e13250b8dbe2486f8aa0e066eb5488ecb1a08
parent6aa6a0795526e9a6a6380d37bb48ac36368e54d6
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.debug.cpu_context: add missing align(16) on x86_64-freebsd mcontext_t


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/debug/cpu_context.zig+1-1
......@@ -2262,7 +2262,7 @@ const signal_ucontext_t = switch (native_os) {
22622262 },
22632263 // https://github.com/freebsd/freebsd-src/blob/55c28005f544282b984ae0e15dacd0c108d8ab12/sys/x86/include/ucontext.h
22642264 .x86_64 => extern struct {
2265 _onstack: i64,
2265 _onstack: i64 align(16),
22662266 rdi: u64,
22672267 rsi: u64,
22682268 rdx: u64,