From patchwork Mon Jan 10 09:30:22 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Iain Sandoe X-Patchwork-Id: 78108 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 9549EB7043 for ; Mon, 10 Jan 2011 20:30:46 +1100 (EST) Received: (qmail 13669 invoked by alias); 10 Jan 2011 09:30:38 -0000 Received: (qmail 13640 invoked by uid 22791); 10 Jan 2011 09:30:34 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from c2beaomr06.btconnect.com (HELO mail.btconnect.com) (213.123.26.184) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 10 Jan 2011 09:30:28 +0000 Received: from host81-138-1-83.in-addr.btopenworld.com (EHLO thor.office) ([81.138.1.83]) by c2beaomr06.btconnect.com with ESMTP id BNG78544; Mon, 10 Jan 2011 09:30:24 +0000 (GMT) Message-Id: <3728993D-0964-48B5-8B9F-F9BD69EBD4C5@sandoe-acoustics.co.uk> From: IainS To: GCC Patches Mime-Version: 1.0 (Apple Message framework v936) Subject: [Patch] amend DW_AT_hi_user value. Date: Mon, 10 Jan 2011 09:30:22 +0000 Cc: Jakub Jelinek X-Mirapoint-IP-Reputation: reputation=Fair-1, source=Queried, refid=tid=0001.0A0B0301.4D2AD1AF.013D, actions=TAG X-Junkmail-Signature-Raw: score=unknown, refid=str=0001.0A0B0209.4D2AD1B1.026F, ss=1, fgs=0, ip=0.0.0.0, so=2010-07-22 22:03:31, dmn=2009-09-10 00:05:08, mode=single engine X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org The dwarf docs I have downloaded (incl. Dwarf4 public review) all list DW_AT_hi_user as 0x3fff. We have it set to 0x3ff0. Should it be amended? Iain Index: include/dwarf2.h =================================================================== --- include/dwarf2.h (revision 168625) +++ include/dwarf2.h (working copy) @@ -377,7 +377,7 @@ enum dwarf_attribute DW_AT_linkage_name = 0x6e, DW_AT_lo_user = 0x2000, /* Implementation-defined range start. */ - DW_AT_hi_user = 0x3ff0, /* Implementation-defined range end. */ + DW_AT_hi_user = 0x3fff, /* Implementation-defined range end. */ /* SGI/MIPS extensions. */ DW_AT_MIPS_fde = 0x2001,