This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: __cxa_demangle
>Attached the code. Let me know if there is a problem.
Ok. I'm integrating it, and I'm running the symbols in libstdc++/7986
through it. The results are not super.
_Z1fA37_iPS_ -> f(int[37], int[37]*), should be: f(int[37], int (*) [37])
%./dt _Z1fA37_iPS_
Segmentation fault (core dumped)
_Z1fM1AFivEPS0_ -> f(int (A::*)(), int ()()*), should be: f(int
(A::*)(), int (*)())
%./dt _Z1fM1AFivEPS0_
Segmentation fault (core dumped)
_Z1fM1AKFivE -> _Z1fM1AKFivE, should be: f(int (A::*)() const)
%./dt _Z1fM1AKFivE
_Z1fM1AKFivE
?
-benjamin