diff options
| author | Mark Wielaard <[email protected]> | 2019-05-16 17:20:35 +0200 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2019-05-16 17:20:35 +0200 |
| commit | a117891a00507d188fdab415bd25554ace9ed7ba (patch) | |
| tree | 8d39c1a883f02c5fcd059fc6071ba3d5c1f336bf /libdw/dwarf.h | |
| parent | 643cbb275d65533472c0f53391f9fc1d5d9a2efc (diff) | |
libdw: Add DW_AT_GNU_numerator, DW_AT_GNU_denominator and DW_AT_GNU_bias.
https://sourceware.org/bugzilla/show_bug.cgi?id=24550
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'libdw/dwarf.h')
| -rw-r--r-- | libdw/dwarf.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libdw/dwarf.h b/libdw/dwarf.h index dc597335..71ca2baa 100644 --- a/libdw/dwarf.h +++ b/libdw/dwarf.h @@ -351,6 +351,12 @@ enum DW_AT_GNU_pubnames = 0x2134, DW_AT_GNU_pubtypes = 0x2135, + /* https://gcc.gnu.org/wiki/DW_AT_GNU_numerator_denominator */ + DW_AT_GNU_numerator = 0x2303, + DW_AT_GNU_denominator = 0x2304, + /* https://gcc.gnu.org/wiki/DW_AT_GNU_bias */ + DW_AT_GNU_bias = 0x2305, + DW_AT_hi_user = 0x3fff }; |
