1997-06-21 02:29:03 +00:00
|
|
|
/* Define the machine-dependent type `jmp_buf'. ARM version. */
|
|
|
|
|
1997-11-26 04:14:44 +00:00
|
|
|
#ifndef _SETJMP_H
|
|
|
|
# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
|
|
|
|
#endif
|
|
|
|
|
1997-06-21 02:29:03 +00:00
|
|
|
#ifndef _ASM
|
|
|
|
/* Jump buffer contains v1-v6, sl, fp, sp, pc and (f4-f7) if we do FP. */
|
1997-11-26 04:14:44 +00:00
|
|
|
# if __ARM_USES_FP
|
1997-06-21 02:29:03 +00:00
|
|
|
typedef int __jmp_buf[22];
|
1997-11-26 04:14:44 +00:00
|
|
|
# else
|
1997-06-21 02:29:03 +00:00
|
|
|
typedef int __jmp_buf[10];
|
1997-11-26 04:14:44 +00:00
|
|
|
# endif
|
1997-06-21 02:29:03 +00:00
|
|
|
#endif
|