diff options
author | Paul Brook <paul@codesourcery.com> | 2008-08-27 16:10:19 +0000 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2008-08-27 16:10:19 +0000 |
commit | c5e46192bf50174037a2d47823f57ef174dc038f (patch) | |
tree | e8979076efa3070d360c7958d60edc20293ddf5a /libstdc++-v3 | |
parent | d4033c81042ca6e288013027c4662734694aaa0c (diff) | |
download | gcc-c5e46192bf50174037a2d47823f57ef174dc038f.zip gcc-c5e46192bf50174037a2d47823f57ef174dc038f.tar.gz gcc-c5e46192bf50174037a2d47823f57ef174dc038f.tar.bz2 |
eh_call.cc (__cxa_call_unexpected): Fix name of __get_object_from_ambiguous_exception.
2008-08-27 Paul Brook <paul@codesourcery.com>
* libsupc++/eh_call.cc (__cxa_call_unexpected): Fix name of
__get_object_from_ambiguous_exception.
From-SVN: r139626
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/libsupc++/eh_call.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 05a9be4..f474746 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2008-08-27 Paul Brook <paul@codesourcery.com> + + * libsupc++/eh_call.cc (__cxa_call_unexpected): Fix name of + __get_object_from_ambiguous_exception. + 2008-08-26 Ben Elliston <bje@au.ibm.com> * src/mt_allocator.cc (__pool): Fix error in comment. diff --git a/libstdc++-v3/libsupc++/eh_call.cc b/libstdc++-v3/libsupc++/eh_call.cc index c0bced9..497d862 100644 --- a/libstdc++-v3/libsupc++/eh_call.cc +++ b/libstdc++-v3/libsupc++/eh_call.cc @@ -125,7 +125,7 @@ __cxa_call_unexpected(void* exc_obj_in) __cxa_eh_globals* globals = __cxa_get_globals_fast(); __cxa_exception* new_xh = globals->caughtExceptions; - void* new_ptr = __gxx_get_object_from_ambiguous_exception (new_xh); + void* new_ptr = __get_object_from_ambiguous_exception (new_xh); const std::type_info* catch_type; int n; bool bad_exception_allowed = false; |