Add dlang demangling support to c++filt.

binutils/ChangeLog:
	* cxxfilt.c (main): Add case for dlang_demangling style.
This commit is contained in:
Iain Buclaw 2014-10-31 18:38:39 +00:00
parent 690725fa0d
commit da37262b20
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-10-31 Iain Buclaw <ibuclaw@gdcproject.org>
* cxxfilt.c (main): Add case for dlang_demangling style.
2014-10-31 Nick Clifton <nickc@redhat.com>
PR binutils/17512

View File

@ -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;