eh_call.cc (__cxa_call_unexpected): Fix name of __get_object_from_ambiguous_exception.
authorPaul Brook <paul@codesourcery.com>
Wed, 27 Aug 2008 16:10:19 +0000 (16:10 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Wed, 27 Aug 2008 16:10:19 +0000 (16:10 +0000)
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

libstdc++-v3/ChangeLog
libstdc++-v3/libsupc++/eh_call.cc

index 05a9be4caec83d959dca61cf6120de35bbe54350..f47474680255b227de9ab16a5b1deac53a4124c2 100644 (file)
@@ -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.
index c0bced9953314421381fba763613b2788619ff38..497d8623c6719c00b3b1a4069eac1a116985d96f 100644 (file)
@@ -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;