svn commit: r303617 - stable/11/contrib/llvm/projects/libunwind/src
Ed Maste
emaste at FreeBSD.org
Mon Aug 1 16:03:21 UTC 2016
Author: emaste
Date: Mon Aug 1 16:03:20 2016
New Revision: 303617
URL: https://svnweb.freebsd.org/changeset/base/303617
Log:
MFC r303521: libunwind: correct return code in unwinding trace log message
Approved by: re (gjb)
Modified:
stable/11/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp
==============================================================================
--- stable/11/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp Mon Aug 1 15:49:50 2016 (r303616)
+++ stable/11/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp Mon Aug 1 16:03:20 2016 (r303617)
@@ -572,7 +572,7 @@ static _Unwind_Reason_Code unwind_phase2
unw_get_reg(cursor, UNW_REG_SP, &sp);
if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) {
_LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): unw_get_proc_info "
- "failed => _URC_FATAL_PHASE1_ERROR\n",
+ "failed => _URC_FATAL_PHASE2_ERROR\n",
static_cast<void *>(exception_object));
return _URC_FATAL_PHASE2_ERROR;
}
More information about the svn-src-stable-11
mailing list