From ebb0a88c81214bdade4c9c62af0c265f548df3fb Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 17 Nov 2005 05:26:18 +0000 Subject: we want to compare the register value itself, not the address of the variable holding the register value --- libc/sysdeps/linux/microblaze/bits/setjmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/sysdeps/linux/microblaze') diff --git a/libc/sysdeps/linux/microblaze/bits/setjmp.h b/libc/sysdeps/linux/microblaze/bits/setjmp.h index 09f9c9666..c3e218955 100644 --- a/libc/sysdeps/linux/microblaze/bits/setjmp.h +++ b/libc/sysdeps/linux/microblaze/bits/setjmp.h @@ -38,6 +38,6 @@ typedef struct /* Test if longjmp to JMPBUF would unwind the frame containing a local variable at ADDRESS. */ #define _JMPBUF_UNWINDS(jmpbuf, address) \ - ((void *) (address) < (void *) &(jmpbuf)[0].__sp) + ((void *) (address) < (void *) (jmpbuf)[0].__sp) #endif /* bits/setjmp.h */ -- cgit v1.2.3