From dce1f3f8f76b5725be3bfec619fd81e803c27936 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Wed, 25 Feb 2026 01:39:48 -0800 Subject: [PATCH] typo --- src/dwarf/dwarf_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dwarf/dwarf_parse.c b/src/dwarf/dwarf_parse.c index ded1b326..bc57b510 100644 --- a/src/dwarf/dwarf_parse.c +++ b/src/dwarf/dwarf_parse.c @@ -842,7 +842,7 @@ dw_read_tag(Arena *arena, // fill out node DW_AttribNode *attrib_n = push_array(arena, DW_AttribNode, 1); - attrib_n->v.info_off = tag_info_off + attrib_tag_cursor; + attrib_n->v.info_off = cu_info_range.min + attrib_tag_cursor; attrib_n->v.abbrev_off = attrib_abbrev_off; attrib_n->v.abbrev_id = attrib_abbrev.id; attrib_n->v.attrib_kind = attrib_kind;