diff options
author | Howard Hinnant <hhinnant@apple.com> | 2012-04-24 17:41:51 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2012-04-24 17:41:51 +0000 |
commit | 2a9c509c7e4e1f0c0090708f48993c3456b7d9d4 (patch) | |
tree | cd6997c384b3ee19792d6182400cebbfd3e02745 | |
parent | 3fd9bbd41e66b68df4f32e9aa00b15a08fadbb13 (diff) | |
download | bcm5719-llvm-2a9c509c7e4e1f0c0090708f48993c3456b7d9d4.tar.gz bcm5719-llvm-2a9c509c7e4e1f0c0090708f48993c3456b7d9d4.zip |
Changed 'cause' from 'terminate' to 'uncaught' in default_terminate_handler
llvm-svn: 155452
-rw-r--r-- | libcxxabi/src/cxa_default_handlers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/cxa_default_handlers.cpp b/libcxxabi/src/cxa_default_handlers.cpp index 8c25b723498..0fba79ced8a 100644 --- a/libcxxabi/src/cxa_default_handlers.cpp +++ b/libcxxabi/src/cxa_default_handlers.cpp @@ -78,7 +78,7 @@ static void default_handler(const char* cause) __attribute__((noreturn)) static void default_terminate_handler() { - default_handler("terminate"); + default_handler("uncaught"); } __attribute__((noreturn)) |