Commit e38ff265 by Richard Henderson

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
parent 7879b81e
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 { ...@@ -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*;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment