aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/m68k/bits/setjmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/m68k/bits/setjmp.h')
-rw-r--r--sysdeps/m68k/bits/setjmp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/m68k/bits/setjmp.h b/sysdeps/m68k/bits/setjmp.h
index a302b72393..aa376a0925 100644
--- a/sysdeps/m68k/bits/setjmp.h
+++ b/sysdeps/m68k/bits/setjmp.h
@@ -39,3 +39,8 @@ typedef struct
#endif
} __jmp_buf[1];
+
+/* Test if longjmp to JMPBUF would unwind the frame
+ containing a local variable at ADDRESS. */
+#define _JMPBUF_UNWINDS(jmpbuf, address) \
+ ((void *) (address) < (void *) (jmpbuf)->__sp)