Upgrade more deps
This commit is contained in:
@@ -245,9 +245,12 @@ impl ParseContext<'_> {
|
||||
}
|
||||
}
|
||||
|
||||
fn parse_inline(ctx: &mut ParseContext, node: gimli::EntriesTreeNode<Reader>) -> Result<()> {
|
||||
fn parse_inline<'a>(
|
||||
ctx: &mut ParseContext<'a>,
|
||||
node: gimli::EntriesTreeNode<'a, '_, Reader<'a>>,
|
||||
) -> Result<()> {
|
||||
if node.entry().tag() == gimli::DW_TAG_inlined_subroutine
|
||||
&& let Some(attr) = node.entry().attr_value(gimli::DW_AT_abstract_origin)?
|
||||
&& let Some(attr) = node.entry().attr_value(gimli::DW_AT_abstract_origin)
|
||||
&& let Some(name) = ctx.name_attr(attr)?
|
||||
{
|
||||
let name = Arc::new(name);
|
||||
|
||||
Reference in New Issue
Block a user