diff options
| author | Mark Wielaard <[email protected]> | 2016-10-25 17:21:05 +0200 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2016-10-28 13:26:20 +0200 |
| commit | 0f891360b2bf6f586e51210142045191eb064486 (patch) | |
| tree | 4cc66bddbb3a47a77101e75169f57ca50bb4c8fe /libdw/dwarf.h | |
| parent | 454fd1fbbf845ccff0c5c37cd06c88b8101766c5 (diff) | |
libdw: Add new DWARF5 tag constants.
Add DW_TAG_coarray_type, DW_TAG_generic_subrange, DW_TAG_dynamic_type,
DW_TAG_call_site, DW_TAG_call_site_parameter, DW_TAG_skeleton_unit,
DW_TAG_immutable_type.
Just the constants, no further interpretion yet.
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'libdw/dwarf.h')
| -rw-r--r-- | libdw/dwarf.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libdw/dwarf.h b/libdw/dwarf.h index d393024f..924dd350 100644 --- a/libdw/dwarf.h +++ b/libdw/dwarf.h @@ -93,9 +93,14 @@ enum DW_TAG_type_unit = 0x41, DW_TAG_rvalue_reference_type = 0x42, DW_TAG_template_alias = 0x43, - - /* DWARF 5. */ + DW_TAG_coarray_type = 0x44, + DW_TAG_generic_subrange = 0x45, + DW_TAG_dynamic_type = 0x46, DW_TAG_atomic_type = 0x47, + DW_TAG_call_site = 0x48, + DW_TAG_call_site_parameter = 0x49, + DW_TAG_skeleton_unit = 0x4a, + DW_TAG_immutable_type = 0x4b, DW_TAG_lo_user = 0x4080, |
