]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2005-12-27 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Wed, 28 Dec 2005 05:46:19 +0000 (05:46 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 28 Dec 2005 05:46:19 +0000 (05:46 +0000)
* sysdeps/arm/eabi/bits/setjmp.h (_JMPBUF_UNWINDS): Take third argument
DEMANGLE, and pass SP value through it.
* sysdeps/arm/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.
* sysdeps/arm/fpu/bits/setjmp.h (_JMPBUF_UNWINDS): Likewise.

sysdeps/arm/bits/setjmp.h
sysdeps/arm/eabi/bits/setjmp.h
sysdeps/arm/fpu/bits/setjmp.h

index 9b7490679155778ddac6531a9ef2b4af513b8a2b..4eb237a38fb9749d145fa84e0da41ebcb53dd34e 100644 (file)
@@ -35,7 +35,7 @@ typedef int __jmp_buf[10];
 
 /* 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]))
 
 #endif
index 3bb92dd7278ad6a687e1a672e3adba8f464a5b9d..458e47fdc4db4151fd7ed3fb4f517863927d2c26 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004 Free Software Foundation, Inc.
+/* Copyright (C) 2004, 2005 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -39,7 +39,7 @@ typedef int __jmp_buf[64] __attribute__((aligned (8)));
 
 /* 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]))
 
 #endif
index 0a19d2c9ab3a411bf7b01d83b5d72d22fe7e40eb..1adf94ec7d4b00da1c8f9785c67a8f2dc5b0b589 100644 (file)
@@ -35,7 +35,7 @@ typedef int __jmp_buf[22];
 
 /* 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]))
 
 #endif