authorgravatar for 35231115+Rocknest@users.noreply.github.comRocknest <35231115+Rocknest@users.noreply.github.com> 2020-01-30 01:17:34+02:00
committergravatar for 35231115+Rocknest@users.noreply.github.comRocknest <35231115+Rocknest@users.noreply.github.com> 2020-01-30 01:17:34+02:00
logb1884b3a62e4b7d5c2bb1532f6ccc372ec3d909a
tree049702a87f998b39a055adae8af3fb66ea0f21e4
parentc0c9c601d492e9da3f391ec4d837f7ab02b559df

Fix aarch64


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

lib/std/os/windows/bits.zig+1-1
......@@ -1101,7 +1101,7 @@ pub usingnamespace switch (builtin.arch) {
11011101 Wvr: [2]DWORD64,
11021102
11031103 pub fn getRegs(ctx: *const CONTEXT) struct {bp: usize, ip: usize} {
1104 return .{.bp = @intCast(usize, ctx.Fp), .ip = @intCast(usize, ctx.Pc)};
1104 return .{.bp = @intCast(usize, ctx.DUMMYUNIONNAME.DUMMYSTRUCTNAME.Fp), .ip = @intCast(usize, ctx.Pc)};
11051105 }
11061106 };
11071107