diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-12-21 22:48:51 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-12-21 22:48:51 +0000 |
commit | 6916b9d2b873677ddd35fef0645d2565eb6f72f8 (patch) | |
tree | b34f5ad73e7817309ba6cd999e59b8537d83d417 /include | |
parent | db591c642ebe2ecba239f0389cad40d3d9b9a027 (diff) | |
download | gcc-6916b9d2b873677ddd35fef0645d2565eb6f72f8.tar.gz |
* dwarf2.def (DW_FORM_ref_sup): Renamed to ...
(DW_FORM_ref_sup4): ... this. New form.
(DW_FORM_ref_sup8): New form.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@243876 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 6 | ||||
-rw-r--r-- | include/dwarf2.def | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index a0a29db1df9..ec8ff910e5b 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,9 @@ +2016-12-21 Jakub Jelinek <jakub@redhat.com> + + * dwarf2.def (DW_FORM_ref_sup): Renamed to ... + (DW_FORM_ref_sup4): ... this. New form. + (DW_FORM_ref_sup8): New form. + 2016-11-03 David Tolnay <dtolnay@gmail.com> Mark Wielaard <mark@klomp.org> diff --git a/include/dwarf2.def b/include/dwarf2.def index bb916ca2382..8bf4f41e6aa 100644 --- a/include/dwarf2.def +++ b/include/dwarf2.def @@ -212,13 +212,14 @@ DW_FORM (DW_FORM_ref_sig8, 0x20) /* DWARF 5. */ DW_FORM (DW_FORM_strx, 0x1a) DW_FORM (DW_FORM_addrx, 0x1b) -DW_FORM (DW_FORM_ref_sup, 0x1c) +DW_FORM (DW_FORM_ref_sup4, 0x1c) DW_FORM (DW_FORM_strp_sup, 0x1d) DW_FORM (DW_FORM_data16, 0x1e) DW_FORM (DW_FORM_line_strp, 0x1f) DW_FORM (DW_FORM_implicit_const, 0x21) DW_FORM (DW_FORM_loclistx, 0x22) DW_FORM (DW_FORM_rnglistx, 0x23) +DW_FORM (DW_FORM_ref_sup8, 0x24) /* Extensions for Fission. See http://gcc.gnu.org/wiki/DebugFission. */ DW_FORM (DW_FORM_GNU_addr_index, 0x1f01) DW_FORM (DW_FORM_GNU_str_index, 0x1f02) |