From: Roland McGrath Date: Wed, 28 Dec 2005 05:44:02 +0000 (+0000) Subject: 2005-12-27 Roland McGrath X-Git-Tag: glibc-2.16-ports-before-merge~980 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a0cc660126b9eb490c3a63d477e61b4ab36d3d4;p=thirdparty%2Fglibc.git 2005-12-27 Roland McGrath * sysdeps/am33/bits/setjmp.h (_JMPBUF_UNWINDS): Take third argument DEMANGLE, and pass SP value through it. --- diff --git a/sysdeps/am33/bits/setjmp.h b/sysdeps/am33/bits/setjmp.h index 5864b92e647..879ecb6b73c 100644 --- a/sysdeps/am33/bits/setjmp.h +++ b/sysdeps/am33/bits/setjmp.h @@ -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]))