From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21959 invoked by alias); 24 Nov 2014 20:07:28 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 21947 invoked by uid 89); 24 Nov 2014 20:07:27 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail-vc0-f175.google.com Received: from mail-vc0-f175.google.com (HELO mail-vc0-f175.google.com) (209.85.220.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 24 Nov 2014 20:07:26 +0000 Received: by mail-vc0-f175.google.com with SMTP id hy10so4407143vcb.6 for ; Mon, 24 Nov 2014 12:07:23 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=/tCt+V+MXeqzTau11f0kU3Svb6lyjb150ytECxelsts=; b=fdT6kUbsHfDvRehXOFwhzE2R48amx3cvjD7Ea4uuSbJ95JDzrMnvK18ryC8+26K/Bd CioXFiH8o0DGkagtwa6LK1VDj0S+0cyr+2S1Mctl2NVanKVnLtpiFXsvpLd8CbRGvERz caAhWhbJKOsizmCUGmPI4BlI+Wg/lsMFRonApP1Zclw1TubwfczrRDL4IdJJkuxIcsLS QvO78vmYGPyIKDd+6Xm/rZO4iKPdnjST5FVH7bSy9hiPstMRX1+0UJ6gaRS3OroAst9K IG91zRLAei7IbuJ9h23aypjXLdbF3eeq74B9tGgTjDbBLfGZJgCdU9iu76VvLtRc70ez o73w== X-Gm-Message-State: ALoCoQm4CkJmvrELrET/VMIVXzWBp2ljgF9F+WsKSlgp9deJT5Ow40qLKg1aMmNXrQb0AmHCILqB MIME-Version: 1.0 X-Received: by 10.220.124.4 with SMTP id s4mr13087271vcr.38.1416859642958; Mon, 24 Nov 2014 12:07:22 -0800 (PST) Received: by 10.52.114.101 with HTTP; Mon, 24 Nov 2014 12:07:22 -0800 (PST) In-Reply-To: <1416859096-29132-1-git-send-email-mjw@redhat.com> References: <1416859096-29132-1-git-send-email-mjw@redhat.com> Date: Mon, 24 Nov 2014 20:07:00 -0000 Message-ID: Subject: Re: [PATCH] Recognize new DWARFv5 C11, C++11 and C++14 DW_LANG constants. From: Doug Evans To: Mark Wielaard Cc: gdb-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-11/txt/msg00610.txt.bz2 On Mon, Nov 24, 2014 at 11:58 AM, Mark Wielaard wrote: > The following patch is needed to recognize the new DW_LANG constants > that GCC 5 might emit as implemented by this GCC patch: > https://gcc.gnu.org/ml/gcc-patches/2014-11/msg02852.html > > gdb/ChangeLog > > * dwarf2read.c (set_cu_language): Recognize DW_LANG_C11, > DW_LANG_C_plus_plus_11, DW_LANG_C_plus_plus_14. > > include/ChangeLog > > * dwarf2.h: Add DW_LANG_C_plus_plus_11, DW_LANG_C11 and > DW_LANG_C_plus_plus_14. > > OK to commit? dwarf2.h exists in the gcc tree and is therefore owned by gcc. As long as this part of the patch is in the gcc tree first, ok by me.