mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-18 08:51:06 +00:00
(__jmp_buf): Remove floating-point support.
(_JMPBUF_UNWINDS): Added.
This commit is contained in:
parent
6298404e7d
commit
6f43b79989
@ -23,10 +23,14 @@
|
||||
#endif
|
||||
|
||||
#ifndef _ASM
|
||||
/* Jump buffer contains v1-v6, sl, fp, sp, pc and (f4-f7) if we do FP. */
|
||||
# if __ARM_USES_FP
|
||||
typedef int __jmp_buf[22];
|
||||
# else
|
||||
/* Jump buffer contains v1-v6, sl, fp, sp and pc. Other registers are not
|
||||
saved. */
|
||||
typedef int __jmp_buf[10];
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#define __JMP_BUF_SP 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]))
|
||||
|
Loading…
Reference in New Issue
Block a user