diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-18 17:24:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-18 17:24:04 +0000 |
commit | af4f1791c0ba974b69197d229abd1acd7fd669d1 (patch) | |
tree | 0828103ae2a902020e5f9f45f3dd620270f92873 /sys/arch/arm | |
parent | c958650fef6067ca1c0470eed943686df37542bf (diff) |
Oops, DDB wrapper around setjmp/longjmp was misplaced
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/arm/locore.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/arm/locore.S b/sys/arch/arm/arm/locore.S index 7055fafd225..aa7d31bf558 100644 --- a/sys/arch/arm/arm/locore.S +++ b/sys/arch/arm/arm/locore.S @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.S,v 1.21 2020/05/17 13:48:30 deraadt Exp $ */ +/* $OpenBSD: locore.S,v 1.22 2020/05/18 17:24:03 deraadt Exp $ */ /* $NetBSD: locore.S,v 1.14 2003/04/20 16:21:40 thorpej Exp $ */ /* @@ -264,6 +264,7 @@ ENTRY(longjmp) ldmia r0, {r4-r14} mov r0, #0x00000001 mov pc, lr +#endif /* DDB */ .data .align 2 @@ -272,4 +273,3 @@ _C_LABEL(esym): .word _C_LABEL(end) ENTRY_NP(abort) b _C_LABEL(abort) -#endif /* DDB */ |