| author | |
| committer | |
| log | b1884b3a62e4b7d5c2bb1532f6ccc372ec3d909a |
| tree | 049702a87f998b39a055adae8af3fb66ea0f21e4 |
| parent | c0c9c601d492e9da3f391ec4d837f7ab02b559df |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/os/windows/bits.zig+1-1| ... | ... | @@ -1101,7 +1101,7 @@ pub usingnamespace switch (builtin.arch) { |
| 1101 | 1101 | Wvr: [2]DWORD64, |
| 1102 | 1102 | |
| 1103 | 1103 | 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)}; | |
| 1105 | 1105 | } |
| 1106 | 1106 | }; |
| 1107 | 1107 |