2005-12-27 Roland McGrath <roland@redhat.com>

* sysdeps/am33/bits/setjmp.h (_JMPBUF_UNWINDS): Take third argument
	DEMANGLE, and pass SP value through it.
This commit is contained in:
Roland McGrath 2005-12-28 05:44:02 +00:00
parent c54e1e52db
commit 0a0cc66012
1 changed files with 2 additions and 2 deletions

View File

@ -30,5 +30,5 @@ typedef int __jmp_buf[26];
/* Test if longjmp to JMPBUF would unwind the frame
containing a local variable at ADDRESS. */
#define _JMPBUF_UNWINDS(jmpbuf, address) \
((void *) (address) < (void *) (jmpbuf[__JMP_BUF_SP]))
#define _JMPBUF_UNWINDS(jmpbuf, address, demangle) \
((void *) (address) < (void *) demangle (jmpbuf[__JMP_BUF_SP]))