diff options
author | Daniel Jacobowitz <dan@debian.org> | 2007-12-11 12:56:21 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2007-12-11 12:56:21 +0000 |
commit | c81454c6493f7562085c486879fafca6d0c08203 (patch) | |
tree | 914ff856c065d9fc228c9fda96e41688ef39f8d8 /include | |
parent | 3de1199b26f037b9986d4558cb7542d328743680 (diff) | |
download | gdb-c81454c6493f7562085c486879fafca6d0c08203.tar.gz |
* dwarf2.h (DW_AT_hi_user): Correct value.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/dwarf2.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index dc7908df15e..2254abf06df 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,7 @@ +2007-12-11 Daniel Jacobowitz <dan@codesourcery.com> + + * dwarf2.h (DW_AT_hi_user): Correct value. + 2007-12-07 Bob Wilson <bob.wilson@acm.org> * xtensa.h (R_XTENSA_32_PCREL): New. diff --git a/include/elf/dwarf2.h b/include/elf/dwarf2.h index 8b6e6284064..371a038c61f 100644 --- a/include/elf/dwarf2.h +++ b/include/elf/dwarf2.h @@ -383,7 +383,7 @@ enum dwarf_attribute }; #define DW_AT_lo_user 0x2000 /* Implementation-defined range start. */ -#define DW_AT_hi_user 0x3ff0 /* Implementation-defined range end. */ +#define DW_AT_hi_user 0x3fff /* Implementation-defined range end. */ /* Location atom names and codes. */ enum dwarf_location_atom |