From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3290 invoked by alias); 18 Oct 2011 08:39:21 -0000 Received: (qmail 3077 invoked by uid 22791); 18 Oct 2011 08:39:19 -0000 X-SWARE-Spam-Status: No, hits=-6.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 18 Oct 2011 08:38:48 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p9I8cP8a030097 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 18 Oct 2011 04:38:25 -0400 Received: from tyan-ft48-01.lab.bos.redhat.com (tyan-ft48-01.lab.bos.redhat.com [10.16.42.4]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p9I8cOgG028839 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 18 Oct 2011 04:38:25 -0400 Received: from tyan-ft48-01.lab.bos.redhat.com (tyan-ft48-01.lab.bos.redhat.com [127.0.0.1]) by tyan-ft48-01.lab.bos.redhat.com (8.14.4/8.14.4) with ESMTP id p9I8cNRQ017262; Tue, 18 Oct 2011 10:38:24 +0200 Received: (from jakub@localhost) by tyan-ft48-01.lab.bos.redhat.com (8.14.4/8.14.4/Submit) id p9I8cNtn017260; Tue, 18 Oct 2011 10:38:23 +0200 Date: Tue, 18 Oct 2011 09:04:00 -0000 From: Jakub Jelinek To: Jan Kratochvil Cc: Tristan Gingold , Tom Tromey , gcc-patches@gcc.gnu.org Subject: Re: [patch#2] dwarf2out: Drop the size + performance overhead of DW_AT_sibling Message-ID: <20111018083823.GN2210@tyan-ft48-01.lab.bos.redhat.com> Reply-To: Jakub Jelinek References: <20111012135008.GA24037@host1.jankratochvil.net> <75BB5328-587F-4704-82EB-C1F8936CF8F2@adacore.com> <20111012141807.GA29514@host1.jankratochvil.net> <20111013204000.GA20992@host1.jankratochvil.net> <017157C8-06DD-4D15-8F7A-4D50FC86338F@adacore.com> <20111018082809.GA30776@host1.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20111018082809.GA30776@host1.jankratochvil.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2011-10/txt/msg01600.txt.bz2 On Tue, Oct 18, 2011 at 10:28:09AM +0200, Jan Kratochvil wrote: > 2011-10-12 Jan Kratochvil > > Stop producing DW_AT_sibling without -gstrict-dwarf. > * dwarf2out.c (dwarf2out_finish): Remove calls of > add_sibling_attributes if !DWARF_STRICT. Extend the comment with > reason. This is ok for trunk. Jakub