From 5b73fb82d272aa32ff124a69e96579679e7d3580 Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Tue, 22 Aug 2023 13:01:09 -0400 Subject: DWARF Import : Improved Cross-Compilation-Unit Handling --- rust/examples/dwarf/dwarf_import/src/functions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/examples/dwarf/dwarf_import/src/functions.rs') diff --git a/rust/examples/dwarf/dwarf_import/src/functions.rs b/rust/examples/dwarf/dwarf_import/src/functions.rs index 069f4ba3..652bb8a5 100644 --- a/rust/examples/dwarf/dwarf_import/src/functions.rs +++ b/rust/examples/dwarf/dwarf_import/src/functions.rs @@ -68,7 +68,7 @@ pub fn parse_function_entry>( // TODO : Handle OOT, stubs/trampolines // Collect function properties (if they exist in this DIE) - let full_name = debug_info_builder.get_name(unit, entry); + let full_name = debug_info_builder.get_name(dwarf, unit, entry); let raw_name = get_raw_name(dwarf, unit, entry); let return_type = get_type(dwarf, unit, entry, debug_info_builder); let address = get_start_address(dwarf, unit, entry); -- cgit v1.3.1