diff options
| author | Mark Wielaard <[email protected]> | 2015-02-09 16:47:08 +0100 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2015-02-16 13:24:34 +0100 |
| commit | d3c816d2d882e7917693acf9464941cf10b118d1 (patch) | |
| tree | fa893112081eb3fbc8b3707ad08ff4a32060aecd /libdw/dwarf.h | |
| parent | 7fb8031aed51ee7c5eb5e5e9c0e072a1367ff7cb (diff) | |
libdw: Add DWARF5/GCC5 DW_LANG_Fortran03 and DW_LANG_Fortran08 support.
GCC5 adds support for the new Fortran 2003 and 2008 standard DWARF5
language codes. Add them to dwarf.h and handle them in dwarf_aggregate_size.
http://dwarfstd.org/ShowIssue.php?issue=141121.1
Also documented at https://fedorahosted.org/elfutils/wiki/DwarfExtensions
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'libdw/dwarf.h')
| -rw-r--r-- | libdw/dwarf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdw/dwarf.h b/libdw/dwarf.h index a97a2c34..5b88c8f4 100644 --- a/libdw/dwarf.h +++ b/libdw/dwarf.h @@ -592,6 +592,8 @@ enum DW_LANG_C_plus_plus_11 = 0x001a, /* ISO C++:2011 */ DW_LANG_C11 = 0x001d, /* ISO C:2011 */ DW_LANG_C_plus_plus_14 = 0x0021, /* ISO C++:2014 */ + DW_LANG_Fortran03 = 0x0022, /* ISO/IEC 1539-1:2004 */ + DW_LANG_Fortran08 = 0x0023, /* ISO/IEC 1539-1:2010 */ DW_LANG_lo_user = 0x8000, |
