[cfe-commits] [libcxxabi] r149403 - /libcxxabi/trunk/src/cxa_personality.cpp
Howard Hinnant
hhinnant at apple.com
Tue Jan 31 11:05:08 PST 2012
Author: hhinnant
Date: Tue Jan 31 13:05:08 2012
New Revision: 149403
URL: http://llvm.org/viewvc/llvm-project?rev=149403&view=rev
Log:
Fix type-o in the comment of the last commit
Modified:
libcxxabi/trunk/src/cxa_personality.cpp
Modified: libcxxabi/trunk/src/cxa_personality.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_personality.cpp?rev=149403&r1=149402&r2=149403&view=diff
==============================================================================
--- libcxxabi/trunk/src/cxa_personality.cpp (original)
+++ libcxxabi/trunk/src/cxa_personality.cpp Tue Jan 31 13:05:08 2012
@@ -867,7 +867,7 @@
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;
More information about the cfe-commits
mailing list