diff options
author | Pierre-Marie de Rodat <derodat@adacore.com> | 2015-08-14 09:48:13 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2015-08-14 09:48:13 +0000 |
commit | 9d14780002ea5048223ecf6dd7a54c39629e095b (patch) | |
tree | d87b479b8dc93740b6bad325eee17c4ec1104121 /include | |
parent | 07d574b4dcf60e6b750ee8c08054117db7560aff (diff) | |
download | gcc-9d14780002ea5048223ecf6dd7a54c39629e095b.tar.gz |
DWARF2: add extensions to handle biased types
include/ChangeLog:
* dwarf2.def (DW_AT_GNU_bias): New attribute.
From-SVN: r226888
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/dwarf2.def | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index ee59133990c..6962f858844 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,5 +1,9 @@ 2015-08-14 Pierre-Marie de Rodat <derodat@adacore.com> + * dwarf2.def (DW_AT_GNU_bias): New attribute. + +2015-08-14 Pierre-Marie de Rodat <derodat@adacore.com> + * dwarf2.def (DW_AT_GNU_numerator, DW_AT_GNU_denominator): New attributes. diff --git a/include/dwarf2.def b/include/dwarf2.def index 9603c042d90..2dfee5666de 100644 --- a/include/dwarf2.def +++ b/include/dwarf2.def @@ -408,6 +408,9 @@ DW_AT (DW_AT_GNAT_descriptive_type, 0x2302) See https://gcc.gnu.org/wiki/DW_AT_GNU_numerator_denominator . */ DW_TAG (DW_AT_GNU_numerator, 0x2303) DW_TAG (DW_AT_GNU_denominator, 0x2304) +/* Biased integer extension. + See https://gcc.gnu.org/wiki/DW_AT_GNU_bias . */ +DW_TAG (DW_AT_GNU_bias, 0x2305) /* UPC extension. */ DW_AT (DW_AT_upc_threads_scaled, 0x3210) /* PGI (STMicroelectronics) extensions. */ |