From patchwork Sat Oct 11 09:49:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Iain Buclaw X-Patchwork-Id: 3202 Received: (qmail 22437 invoked by alias); 11 Oct 2014 09:49:28 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 22418 invoked by uid 89); 11 Oct 2014 09:49:27 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-qa0-f51.google.com Received: from mail-qa0-f51.google.com (HELO mail-qa0-f51.google.com) (209.85.216.51) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sat, 11 Oct 2014 09:49:26 +0000 Received: by mail-qa0-f51.google.com with SMTP id k15so2602327qaq.24 for ; Sat, 11 Oct 2014 02:49:24 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.140.85.18 with SMTP id m18mr8084745qgd.97.1413020964055; Sat, 11 Oct 2014 02:49:24 -0700 (PDT) Received: by 10.229.236.2 with HTTP; Sat, 11 Oct 2014 02:49:23 -0700 (PDT) Date: Sat, 11 Oct 2014 10:49:23 +0100 Message-ID: Subject: [PATCH] Support dlang demangle in cxxfilter From: Iain Buclaw To: gdb-patches@sourceware.org, Binutils Development X-IsSubscribed: yes Hi, This is a trivial patch to add dlang support in c++filt following the sync with upstream libiberty. -- Iain binutils/ChangeLog 2014-10-11 Iain Buclaw * cxxfilt.c (main): Add case for dlang_demangling style. diff --git a/binutils/cxxfilt.c b/binutils/cxxfilt.c index 157ebe0..03c4d0c 100644 --- a/binutils/cxxfilt.c +++ b/binutils/cxxfilt.c @@ -239,6 +239,7 @@ main (int argc, char **argv) case edg_demangling: case gnat_demangling: case gnu_v3_demangling: + case dlang_demangling: case auto_demangling: valid_symbols = standard_symbol_characters (); break;