This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
[PATCH] Support dlang demangle in cxxfilter
- From: Iain Buclaw <ibuclaw at gdcproject dot org>
- To: gdb-patches at sourceware dot org, Binutils Development <binutils at sourceware dot org>
- Date: Sat, 11 Oct 2014 10:49:23 +0100
- Subject: [PATCH] Support dlang demangle in cxxfilter
- Authentication-results: sourceware.org; auth=none
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 <ibuclaw@gdcproject.org>
* 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;