mirror of git://gcc.gnu.org/git/gcc.git
linker-map.gnu: Export operator new with unsigned long, and with std::nothrow_t.
* config/linker-map.gnu: Export operator new with unsigned long,
and with std::nothrow_t. Likewise operator delete.
From-SVN: r50176
This commit is contained in:
parent
7879b81e6c
commit
e38ff265da
|
|
@ -1,3 +1,8 @@
|
||||||
|
2002-02-28 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
|
* config/linker-map.gnu: Export operator new with unsigned long,
|
||||||
|
and with std::nothrow_t. Likewise operator delete.
|
||||||
|
|
||||||
2002-02-28 Paolo Carlini <pcarlini@unitus.it>
|
2002-02-28 Paolo Carlini <pcarlini@unitus.it>
|
||||||
|
|
||||||
* include/bits/locale_facets.tcc (num_get::_M_extract_int):
|
* include/bits/locale_facets.tcc (num_get::_M_extract_int):
|
||||||
|
|
|
||||||
|
|
@ -37,17 +37,34 @@ GLIBCPP_3.1 {
|
||||||
};
|
};
|
||||||
|
|
||||||
# Names not in an 'extern' block are mangled names.
|
# Names not in an 'extern' block are mangled names.
|
||||||
|
|
||||||
# operator new(unsigned)
|
# operator new(unsigned)
|
||||||
_Znwj;
|
_Znwj;
|
||||||
|
# operator new(unsigned, std::nothrow_t const&)
|
||||||
|
_ZnwjRKSt9nothrow_t;
|
||||||
|
# operator new(unsigned long)
|
||||||
|
_Znwm;
|
||||||
|
# operator new(unsigned long, std::nothrow_t const&)
|
||||||
|
_ZnwmRKSt9nothrow_t;
|
||||||
|
|
||||||
# operator delete(void*)
|
# operator delete(void*)
|
||||||
_ZdlPv;
|
_ZdlPv;
|
||||||
|
# operator delete(void*, std::nothrow_t const&)
|
||||||
|
_ZdlPvRKSt9nothrow_t;
|
||||||
|
|
||||||
# operator new[](unsigned)
|
# operator new[](unsigned)
|
||||||
_Znaj;
|
_Znaj;
|
||||||
|
# operator new[](unsigned, std::nothrow_t const&)
|
||||||
|
_ZnajRKSt9nothrow_t;
|
||||||
|
# operator new[](unsigned long)
|
||||||
|
_Znam;
|
||||||
|
# operator new[](unsigned long, std::nothrow_t const&)
|
||||||
|
_ZnamRKSt9nothrow_t;
|
||||||
|
|
||||||
# operator delete[](void*)
|
# operator delete[](void*)
|
||||||
_ZdaPv;
|
_ZdaPv;
|
||||||
|
# operator delete[](void*, std::nothrow_t const&)
|
||||||
|
_ZdaPvRKSt9nothrow_t;
|
||||||
|
|
||||||
# vtable
|
# vtable
|
||||||
_ZTV*;
|
_ZTV*;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue