Skip to content

Commit

Permalink
https://github.com/CraneStation/wasmtime/pull/186#discussion_r302781231
Browse files Browse the repository at this point in the history
  • Loading branch information
yurydelendik authored and sunfishcode committed Jul 17, 2019
1 parent 5362bd1 commit 748abd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wasmtime-debug/src/transform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ where
debug_addr_base: DebugAddrBase<R::Offset>,
rnglists: &'a RangeLists<R>,
loclists: &'a LocationLists<R>,
reachable: &'a HashSet<UnitSectionOffset>,
reachable: HashSet<UnitSectionOffset>,
}

type PendingDieRef = (write::UnitEntryId, gimli::DwAt, UnitOffset);
Expand Down Expand Up @@ -632,7 +632,7 @@ pub fn transform_dwarf(
debug_addr_base: DebugAddrBase(0),
rnglists: &di.dwarf.ranges,
loclists: &di.dwarf.locations,
reachable: &reachable,
reachable,
};

let out_encoding = gimli::Encoding {
Expand Down

0 comments on commit 748abd9

Please sign in to comment.