summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/arch/arm64/arm64/locore.S6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/arm64/arm64/locore.S b/sys/arch/arm64/arm64/locore.S
index 1b6e90dfe06..849604ece00 100644
--- a/sys/arch/arm64/arm64/locore.S
+++ b/sys/arch/arm64/arm64/locore.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: locore.S,v 1.27 2020/02/02 18:01:39 naddy Exp $ */
+/* $OpenBSD: locore.S,v 1.28 2020/02/02 18:55:46 deraadt Exp $ */
/*-
* Copyright (c) 2012-2014 Andrew Turner
* All rights reserved.
@@ -349,10 +349,14 @@ _C_LABEL(sigcode):
svc 0
.globl _C_LABEL(sigcoderet)
_C_LABEL(sigcoderet):
+ nop
+ nop
/* sigreturn failed, exit */
mov x8, #SYS_exit
svc 0
+ nop
+ nop
b 1b
END(sigcode)