Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Jul 2016 21:37:00 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r303521 - head/contrib/llvm/projects/libunwind/src
Message-ID:  <201607292137.u6TLb0b8080720@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Fri Jul 29 21:37:00 2016
New Revision: 303521
URL: https://svnweb.freebsd.org/changeset/base/303521

Log:
  libunwind: correct return code in unwinding trace log message
  
  Obtained from:	LLVM r277215
  MFC after:	3 days
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp

Modified: head/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp
==============================================================================
--- head/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp	Fri Jul 29 21:18:20 2016	(r303520)
+++ head/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp	Fri Jul 29 21:37:00 2016	(r303521)
@@ -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;
     }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607292137.u6TLb0b8080720>