mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
d4033c8104
commit
c5e46192bf
|
@ -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>
|
2008-08-26 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
* src/mt_allocator.cc (__pool): Fix error in comment.
|
* src/mt_allocator.cc (__pool): Fix error in comment.
|
||||||
|
|
|
@ -125,7 +125,7 @@ __cxa_call_unexpected(void* exc_obj_in)
|
||||||
|
|
||||||
__cxa_eh_globals* globals = __cxa_get_globals_fast();
|
__cxa_eh_globals* globals = __cxa_get_globals_fast();
|
||||||
__cxa_exception* new_xh = globals->caughtExceptions;
|
__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;
|
const std::type_info* catch_type;
|
||||||
int n;
|
int n;
|
||||||
bool bad_exception_allowed = false;
|
bool bad_exception_allowed = false;
|
||||||
|
|
Loading…
Reference in New Issue