]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* doc/tm.texi (Exception Handling): Mention unwind-dw2-xtensa.c.
authorBen Elliston <bje@au.ibm.com>
Tue, 4 Dec 2007 03:14:14 +0000 (03:14 +0000)
committerBen Elliston <bje@gcc.gnu.org>
Tue, 4 Dec 2007 03:14:14 +0000 (14:14 +1100)
From-SVN: r130597

gcc/ChangeLog
gcc/doc/tm.texi

index d24aa2a00896e7fb9d033855aba2444a04b977f0..30104be958b4041a3e7cb9e5af01d10f5838fc5d 100644 (file)
@@ -1,3 +1,7 @@
+2007-12-04  Ben Elliston  <bje@au.ibm.com>
+
+       * doc/tm.texi (Exception Handling): Mention unwind-dw2-xtensa.c.
+
 2007-12-03  Steven Bosscher  <stevenb.gcc@gmail.com>
 
        PR33713
index 074fba2821cdb34d40590a893384a1f1d9744929..e1475bf06e98b5a3c632ee61616ffe6314f9c3c2 100644 (file)
@@ -3371,14 +3371,15 @@ code to the call-frame unwinder for use when there is no unwind data
 available.  The most common reason to implement this macro is to unwind
 through signal frames.
 
-This macro is called from @code{uw_frame_state_for} in @file{unwind-dw2.c}
-and @file{unwind-ia64.c}.  @var{context} is an @code{_Unwind_Context};
+This macro is called from @code{uw_frame_state_for} in
+@file{unwind-dw2.c}, @file{unwind-dw2-xtensa.c} and
+@file{unwind-ia64.c}.  @var{context} is an @code{_Unwind_Context};
 @var{fs} is an @code{_Unwind_FrameState}.  Examine @code{context->ra}
 for the address of the code being executed and @code{context->cfa} for
-the stack pointer value.  If the frame can be decoded, the register save
-addresses should be updated in @var{fs} and the macro should evaluate to
-@code{_URC_NO_REASON}.  If the frame cannot be decoded, the macro should
-evaluate to @code{_URC_END_OF_STACK}.
+the stack pointer value.  If the frame can be decoded, the register
+save addresses should be updated in @var{fs} and the macro should
+evaluate to @code{_URC_NO_REASON}.  If the frame cannot be decoded,
+the macro should evaluate to @code{_URC_END_OF_STACK}.
 
 For proper signal handling in Java this macro is accompanied by
 @code{MAKE_THROW_FRAME}, defined in @file{libjava/include/*-signal.h} headers.