dwarf2-signal.h (MAKE_THROW_FRAME, sparc32): Document magic instruction reading sequence.

2002-04-21  David S. Miller  <davem@redhat.com>

	* include/dwarf2-signal.h (MAKE_THROW_FRAME, sparc32): Document
	magic instruction reading sequence.

From-SVN: r52608
This commit is contained in:
David S. Miller 2002-04-22 01:12:50 -07:00 committed by David S. Miller
parent 39fb5d3646
commit a94f4e1110
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-04-21 David S. Miller <davem@redhat.com>
* include/dwarf2-signal.h (MAKE_THROW_FRAME, sparc32): Document
magic instruction reading sequence.
2002-04-21 Mark Wielaard <mark@klomp.org>
* mauve-libgcj: Don't run java.lang.ref tests since they are buggy.

View File

@ -77,9 +77,11 @@ do \
} *regp; \
unsigned int insn; \
__asm__ __volatile__("ld [%%i7 + 8], %0" : "=r" (insn)); \
/* mov __NR_sigaction, %g1; Old signal stack layout */ \
if (insn == 0x821020d8) \
regp = (struct sig_regs *) _sip; \
else \
/* mov __NR_rt_sigaction, %g1; New signal stack layout */ \
regp = (struct sig_regs *) (_sip + 1); \
regp->pc = regp->npc; \
regp->npc += 4; \