This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
C++ Demangling
- From: kamlesh kumar <kamleshbhalui at gmail dot com>
- To: binutils at sourceware dot org, Nick Clifton <nickc at redhat dot com>, Alan Modra <amodra at gmail dot com>
- Date: Fri, 11 Oct 2019 12:46:45 +0530
- Subject: C++ Demangling
Hi Devs,
I am looking into this bug
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84950
I could see that
$cat test
_Q.__0
$c++filt < test
::Q.(void)
$c++filt -v
GNU c++filt (GNU Binutils) 2.30
=================================
With trunk c++filt
$c++filt < test
_Q.__0
$c++filt -v
GNU c++filt (GNU Binutils) 2.32
I am going through the demangling/mangling docs.
and like to know
which demangled name above is wrong ?
Thanks
./Kamlesh