Skip to content

Commit

Permalink
GP-0 fix DW_AT_call_origin expected attribute class
Browse files Browse the repository at this point in the history
Was causing warning messages "Mismatched DWARF Attribute and Form:
DW_AT_call_origin->DW_FORM_ref4".

Caused by bad info in the dwarf5 std docs, was fixed in dwarf6 std docs.
  • Loading branch information
dev747368 committed May 8, 2024
1 parent c4ea004 commit 3616cd7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public enum DWARFAttribute {
DW_AT_call_all_tail_calls(0x7c, flag),
DW_AT_call_return_pc(0x7d, address),
DW_AT_call_value(0x7e, exprloc),
DW_AT_call_origin(0x7f, exprloc),
DW_AT_call_origin(0x7f, reference),
DW_AT_call_parameter(0x80, reference),
DW_AT_call_pc(0x81, address),
DW_AT_call_tail_call(0x82, flag),
Expand Down

0 comments on commit 3616cd7

Please sign in to comment.