From 0a0cc660126b9eb490c3a63d477e61b4ab36d3d4 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 28 Dec 2005 05:44:02 +0000 Subject: [PATCH] 2005-12-27 Roland McGrath * sysdeps/am33/bits/setjmp.h (_JMPBUF_UNWINDS): Take third argument DEMANGLE, and pass SP value through it. --- sysdeps/am33/bits/setjmp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdeps/am33/bits/setjmp.h b/sysdeps/am33/bits/setjmp.h index 5864b92e64..879ecb6b73 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]))