| ... | @@ -925,7 +925,8 @@ const StackIterator = union(enum) { | ... | @@ -925,7 +925,8 @@ const StackIterator = union(enum) { |
| 925 | const di_gpa = getDebugInfoAllocator(); | 925 | const di_gpa = getDebugInfoAllocator(); |
| 926 | const ret_addr = di.unwindFrame(di_gpa, unwind_context) catch |err| { | 926 | const ret_addr = di.unwindFrame(di_gpa, unwind_context) catch |err| { |
| 927 | const pc = unwind_context.pc; | 927 | const pc = unwind_context.pc; |
| 928 | it.* = .{ .fp = unwind_context.getFp() }; | 928 | const fp = unwind_context.getFp(); |
| | 929 | it.* = .{ .fp = fp }; |
| 929 | return .{ .switch_to_fp = .{ | 930 | return .{ .switch_to_fp = .{ |
| 930 | .address = pc, | 931 | .address = pc, |
| 931 | .err = err, | 932 | .err = err, |