From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25663 invoked by alias); 11 Dec 2007 12:56:59 -0000 Received: (qmail 25647 invoked by uid 22791); 11 Dec 2007 12:56:58 -0000 X-Spam-Check-By: sourceware.org Received: from NaN.false.org (HELO nan.false.org) (208.75.86.248) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 11 Dec 2007 12:56:52 +0000 Received: from nan.false.org (localhost [127.0.0.1]) by nan.false.org (Postfix) with ESMTP id 645DA98020; Tue, 11 Dec 2007 12:56:50 +0000 (GMT) Received: from caradoc.them.org (22.svnf5.xdsl.nauticom.net [209.195.183.55]) by nan.false.org (Postfix) with ESMTP id 46B7E9801F; Tue, 11 Dec 2007 12:56:50 +0000 (GMT) Received: from drow by caradoc.them.org with local (Exim 4.68) (envelope-from ) id 1J24fJ-0006XD-2J; Tue, 11 Dec 2007 07:56:49 -0500 Date: Tue, 11 Dec 2007 12:56:00 -0000 From: Daniel Jacobowitz To: Yoriko Komatsuzaki Cc: gdb@sourceware.org, binutils@sourceware.org Subject: Re: DW_AT_hi_user is 0x3ff0 or 0x3fff ? Message-ID: <20071211125648.GA24736@caradoc.them.org> Mail-Followup-To: Yoriko Komatsuzaki , gdb@sourceware.org, binutils@sourceware.org References: <20071211162208.0CF0.YORIKO@sm.sony.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20071211162208.0CF0.YORIKO@sm.sony.co.jp> User-Agent: Mutt/1.5.15 (2007-04-09) X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2007-12/txt/msg00075.txt.bz2 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 * 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