diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-10 12:34:54 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-21 10:47:39 -0800 |
commit | 34b153227d5343128cb36931b4dbb27e378372a5 (patch) | |
tree | c6f84632bd072e594f38d56a773f1b4496323dbc /system/lib/libcxxabi/src/cxa_exception.cpp | |
parent | e9fe31fb2f629a2b94809c7f9a91577425728b1e (diff) |
update libcxxabi
Diffstat (limited to 'system/lib/libcxxabi/src/cxa_exception.cpp')
-rw-r--r-- | system/lib/libcxxabi/src/cxa_exception.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/lib/libcxxabi/src/cxa_exception.cpp b/system/lib/libcxxabi/src/cxa_exception.cpp index b866f9e4..1c362993 100644 --- a/system/lib/libcxxabi/src/cxa_exception.cpp +++ b/system/lib/libcxxabi/src/cxa_exception.cpp @@ -466,9 +466,9 @@ __cxa_rethrow() globals->caughtExceptions = 0; } #if __arm__ - (void) _Unwind_SjLj_Resume_or_Rethrow(&exception_header->unwindHeader); + _Unwind_SjLj_RaiseException(&exception_header->unwindHeader); #else - (void)_Unwind_RaiseException(&exception_header->unwindHeader); + _Unwind_RaiseException(&exception_header->unwindHeader); #endif // If we get here, some kind of unwinding error has occurred. |