diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-01-10 17:32:51 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-01-13 17:59:15 +0700 |
commit | 44cb63a6ecea58dc21d20843f5af0a006f8b36cd (patch) | |
tree | 61b12af6826f796ec43c12a8ff3dfbf5fa98f1a7 /system/lib/libcxxabi/src/cxa_exception.hpp | |
parent | 88d2ba5490b515245143e125b5ae52e27c2ee78c (diff) |
Update to current libcxxabi for new exception code.
Diffstat (limited to 'system/lib/libcxxabi/src/cxa_exception.hpp')
-rw-r--r-- | system/lib/libcxxabi/src/cxa_exception.hpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/system/lib/libcxxabi/src/cxa_exception.hpp b/system/lib/libcxxabi/src/cxa_exception.hpp index 66f05c45..22c4da38 100644 --- a/system/lib/libcxxabi/src/cxa_exception.hpp +++ b/system/lib/libcxxabi/src/cxa_exception.hpp @@ -41,19 +41,19 @@ static const uint64_t get_vendor_and_language = 0xFFFFFFFFFFFFFF00; // mask std::unexpected_handler unexpectedHandler; std::terminate_handler terminateHandler; - __cxa_exception *nextException; + __cxa_exception *nextException; - int handlerCount; + int handlerCount; #ifdef __ARM_EABI_UNWINDER__ - __cxa_exception* nextPropagatingException; - int propagationCount; + __cxa_exception* nextPropagatingException; + int propagationCount; #else - int handlerSwitchValue; - const unsigned char *actionRecord; - const unsigned char *languageSpecificData; - void *catchTemp; - void *adjustedPtr; + int handlerSwitchValue; + const unsigned char *actionRecord; + const unsigned char *languageSpecificData; + void *catchTemp; + void *adjustedPtr; #endif #if !__LP64__ |