Skip to content

Commit

Permalink
Fix form number for 8-byte dwarf type sigs
Browse files Browse the repository at this point in the history
In dwarf-land, 0x10 is followed by 0x0a, but 0x19 is followed by
0x20. The dwarf spec proves the existence of a malicious deity.
  • Loading branch information
abadams committed Apr 25, 2014
1 parent fb86a76 commit 525176e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Introspection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ class DebugSections {
// Just the existence of this field is information apparently? There's no data.
break;
}
case 26: // ref_sig8
case 32: // ref_sig8
{
// 64-bit type signature for a reference in its own type unit
val = e.getU64(&off);
Expand Down

0 comments on commit 525176e

Please sign in to comment.