diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-17 05:26:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-17 05:26:18 +0000 |
commit | ebb0a88c81214bdade4c9c62af0c265f548df3fb (patch) | |
tree | 23da8fd1a1f55ba8fd3ccc872cdaa38ff95d63e3 /libc/sysdeps/linux/v850/bits/setjmp.h | |
parent | 5c9b710b7b0829911edf9765ad33e4c0b2abbe1f (diff) |
we want to compare the register value itself, not the address of the variable holding the register value
Diffstat (limited to 'libc/sysdeps/linux/v850/bits/setjmp.h')
-rw-r--r-- | libc/sysdeps/linux/v850/bits/setjmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/v850/bits/setjmp.h b/libc/sysdeps/linux/v850/bits/setjmp.h index 97cb11784..93395ade4 100644 --- a/libc/sysdeps/linux/v850/bits/setjmp.h +++ b/libc/sysdeps/linux/v850/bits/setjmp.h @@ -37,6 +37,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 */ |