From 225deb64e9891c555db2b55d9f4f8c16d9262139 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sun, 9 Aug 2026 05:16:51 +0200 Subject: [PATCH] std.debug.cpu_context.Kvx: fix pc/ra being swapped vs current assembly --- lib/std/debug/cpu_context.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/debug/cpu_context.zig b/lib/std/debug/cpu_context.zig index 6cd81d2575b0366c5af3064d292070fdee039009..e85a842bf49f559ca1765a89c9c66756af2d5a73 100644 --- a/lib/std/debug/cpu_context.zig +++ b/lib/std/debug/cpu_context.zig @@ -638,8 +638,8 @@ const Hexagon = extern struct { /// This is an `extern struct` so that inline assembly in `current` can use field offsets. const Kvx = extern struct { r: [64]Gpr, + pc: Gpr, ra: Gpr, - pc: Gpr, pub const Gpr = u64; -- 2.54.0