On Tue, Dec 11, 2007 at 04:30:03PM +0900, Yoriko Komatsuzaki
wrote:
>
> Hello,
>
> I think that this is not so big problem.
> But just to be safe, could you check the following
definition ?
>
> In include/elf/dwarf2.h of gdb-6.6/6.7,
>
> #define DW_AT_hi_user 0x3ff0
You're right. I've just fixed it, thanks!
--
Daniel Jacobowitz
CodeSourcery
2007-12-11 Daniel Jacobowitz <dan codesourcery.com>
* dwarf2.h (DW_AT_hi_user): Correct value.
Index: dwarf2.h
============================================================
=======
RCS file: /cvs/src/src/include/elf/dwarf2.h,v
retrieving revision 1.21
diff -u -p -r1.21 dwarf2.h
--- dwarf2.h 16 Nov 2007 15:36:21 -0000 1.21
+++ dwarf2.h 11 Dec 2007 12:55:58 -0000
 -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
|