From 8aacc0b27554ddf039b2199e6af0fb34e5c4841d Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Wed, 5 Jun 2024 21:16:03 -0400 Subject: Fix bugs with importing dwarf function information and greatly improve performance --- 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 016c4033..de1400d2 100644 --- a/rust/examples/dwarf/dwarf_import/src/functions.rs +++ b/rust/examples/dwarf/dwarf_import/src/functions.rs @@ -75,5 +75,5 @@ pub(crate) fn parse_function_entry>( let address = get_start_address(unit, entry, debug_info_builder_context); let (parameters, variable_arguments) = get_parameters(unit, entry, debug_info_builder_context, debug_info_builder); - debug_info_builder.insert_function(full_name, raw_name, return_type, address, parameters, variable_arguments); + debug_info_builder.insert_function(full_name, raw_name, return_type, address, ¶meters, variable_arguments); } -- cgit v1.3.1