Add mangled symbols for operator new / delete on 64-bit platforms.

Reported by:	decke@
MFC after:	1 week
This commit is contained in:
Dag-Erling Smørgrav 2012-06-05 12:34:08 +00:00
parent a4d953c44e
commit 87b8d8bbc9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=236614

View File

@ -126,11 +126,19 @@ CXXABI_1.3 {
# __gnu_cxx::_verbose_terminate_handler() # __gnu_cxx::_verbose_terminate_handler()
_ZN9__gnu_cxx27__verbose_terminate_handlerEv; _ZN9__gnu_cxx27__verbose_terminate_handlerEv;
# new / delete operators # operator new and new[], 32-bit size_t
_Znaj; _Znaj;
_ZnajRKSt9nothrow_t; _ZnajRKSt9nothrow_t;
_Znwj; _Znwj;
_ZnwjRKSt9nothrow_t; _ZnwjRKSt9nothrow_t;
# operator new and new[], 64-bit size_t
_Znam;
_ZnamRKSt9nothrow_t;
_Znwm;
_ZnwmRKSt9nothrow_t;
# operator delete and delete[]
_ZdaPv; _ZdaPv;
_ZdaPvRKSt9nothrow_t; _ZdaPvRKSt9nothrow_t;
_ZdlPv; _ZdlPv;