Dwarf.Unwind: fix typo

This commit is contained in:
mlugg 2025-09-29 13:56:56 +01:00
parent a90eb50c80
commit 12ceb896fa
No known key found for this signature in database
GPG Key ID: 3F5B7DCCBF4AF02E

View File

@ -391,7 +391,7 @@ pub const CommonInformationEntry = struct {
'P' => {
const enc: EH.PE = @bitCast(try aug_data.takeByte());
const endian: Endian = .little; // irrelevant because we're discarding the value anyway
_ = try readEhPointerAbs(&r, enc.type, addr_size_bytes, endian); // we ignore the personality routine; endianness is irrelevant since we're discarding
_ = try readEhPointerAbs(&aug_data, enc.type, addr_size_bytes, endian); // we ignore the personality routine; endianness is irrelevant since we're discarding
},
'R' => fde_pointer_enc = @bitCast(try aug_data.takeByte()),
'S' => is_signal_frame = true,