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