This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Support dlang demangle in cxxfilter


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;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]