From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20131 invoked by alias); 23 Jun 2014 16:32:02 -0000 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 Received: (qmail 20116 invoked by uid 89); 23 Jun 2014 16:32:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 23 Jun 2014 16:31:32 +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 s5NGVUP5002347 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 23 Jun 2014 12:31:31 -0400 Received: from barimba (ovpn-113-103.phx2.redhat.com [10.3.113.103]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s5NGVTt3002009 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO); Mon, 23 Jun 2014 12:31:30 -0400 From: Tom Tromey To: Mark Wielaard Cc: gcc-patches@gcc.gnu.org, Jason Merrill , Cary Coutant , jsm28@gcc.gnu.org Subject: Re: [PATCH] DWARFv5 Emit DW_TAG_atomic_type. References: <1403305305-29532-1-git-send-email-mjw@redhat.com> <1403429977-5575-1-git-send-email-mjw@redhat.com> Date: Mon, 23 Jun 2014 16:32:00 -0000 In-Reply-To: <1403429977-5575-1-git-send-email-mjw@redhat.com> (Mark Wielaard's message of "Sun, 22 Jun 2014 11:39:37 +0200") Message-ID: <87tx7b610e.fsf@fleche.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SW-Source: 2014-06/txt/msg01796.txt.bz2 >>>>> "Mark" == Mark Wielaard writes: Mark> The following is just a prototype to try out a new qualifier type tag Mark> proposed for DWARFv5. There is not even a draft yet of DWARFv5, so this Mark> is just based on a proposal that might or might not be adopted and/or Mark> changed http://dwarfstd.org/ShowIssue.php?issue=131112.1 Mark> gcc/ChangeLog Mark> * dwarf2out.h (enum dw_mod_flag): Add dw_mod_atomic. Mark> * dwarf2out.c (dw_mod_decl_flags): Handle TYPE_ATOMIC. Mark> (dw_mod_type_flags): Likewise. Mark> (dw_mods_to_quals): Likewise. Mark> (dw_mod_qualified_type): Likewise. Mark> (modified_type_die): Likewise. Mark> opts.c (common_handle_option): Accept -gdwarf-5. The ChangeLog should mention PR debug/60782 -- I saw you did this in the "restrict" patch so you probably just weren't aware of this one... Tom