summaryrefslogtreecommitdiff
path: root/src/cxa_personality.cpp
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2012-01-31 19:05:08 +0000
committerHoward Hinnant <hhinnant@apple.com>2012-01-31 19:05:08 +0000
commit2e774bf081cc1aeff076a250ade5c909f9ad79a8 (patch)
treee845af77e7cd4640c226354432587ede452924d2 /src/cxa_personality.cpp
parent135b4bd2232cf870ec45a07970f5402ba96baddf (diff)
Fix type-o in the comment of the last commit
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@149403 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'src/cxa_personality.cpp')
-rw-r--r--src/cxa_personality.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cxa_personality.cpp b/src/cxa_personality.cpp
index ce51adf..4badbbd 100644
--- a/src/cxa_personality.cpp
+++ b/src/cxa_personality.cpp
@@ -867,7 +867,7 @@ __cxa_call_unexpected(void* arg)
old_exception_header = (__cxa_exception*)(unwind_exception+1) - 1;
t_handler = old_exception_header->terminateHandler;
u_handler = old_exception_header->unexpectedHandler;
- // std::__unexpected(u_handler) rethrows the same exception,
+ // If std::__unexpected(u_handler) rethrows the same exception,
// these values get overwritten by the rethrow. So save them now:
ttypeIndex = old_exception_header->handlerSwitchValue;
lsda = old_exception_header->languageSpecificData;