Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vendor
Browse files Browse the repository at this point in the history
javierhonduco committed May 8, 2024
1 parent 7348cc5 commit 89cfbe5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/unwind_info.rs
Original file line number Diff line number Diff line change
@@ -256,7 +256,8 @@ impl<'a> UnwindInfoBuilder<'a> {

let eh_frame_data = &eh_frame_section.uncompressed_data()?;

let eh_frame = EhFrame::new(eh_frame_data, endian);
let mut eh_frame = EhFrame::new(eh_frame_data, endian);
eh_frame.set_vendor(gimli::Vendor::AArch64);
let mut entries_iter = eh_frame.entries(&bases);

let mut cur_cie = None;

0 comments on commit 89cfbe5

Please sign in to comment.