diff options
author | Alan Modra <amodra@gmail.com> | 2020-09-25 10:00:01 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-09-25 11:55:00 +0930 |
commit | cc9ea2c21cd6e2c88995a7484d2c848c7d7ce71b (patch) | |
tree | 217f62e1750fd46de29f000a55b845855d90f8b5 /elfcpp/dwarf.h | |
parent | 09d7303523a013f2a4140f5d41af9b170fadba35 (diff) | |
download | gdb-cc9ea2c21cd6e2c88995a7484d2c848c7d7ce71b.zip gdb-cc9ea2c21cd6e2c88995a7484d2c848c7d7ce71b.tar.gz gdb-cc9ea2c21cd6e2c88995a7484d2c848c7d7ce71b.tar.bz2 |
Re: Sync libiberty and include with GCC for get_DW_UT_name
* dwarf.h (DW_FIRST_UT, DW_UT, DW_END_UT): Define.
Diffstat (limited to 'elfcpp/dwarf.h')
-rw-r--r-- | elfcpp/dwarf.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/elfcpp/dwarf.h b/elfcpp/dwarf.h index 1221f37..d5e06d4 100644 --- a/elfcpp/dwarf.h +++ b/elfcpp/dwarf.h @@ -81,6 +81,11 @@ namespace elfcpp #define DW_IDX_DUP(name, value) , name = value #define DW_END_IDX }; +#define DW_FIRST_UT(name, value) enum dwarf_unit_type { \ + name = value +#define DW_UT(name, value) , name = value +#define DW_END_UT }; + #include "dwarf2.def" #undef DW_FIRST_TAG @@ -117,6 +122,10 @@ namespace elfcpp #undef DW_IDX_DUP #undef DW_END_IDX +#undef DW_FIRST_UT +#undef DW_UT +#undef DW_END_UT + // Frame unwind information. enum DW_EH_PE |