symbol table
ok kettenis@ miod@
-/* $OpenBSD: _setjmp.S,v 1.4 2020/10/19 08:47:28 kettenis Exp $ */
+/* $OpenBSD: _setjmp.S,v 1.5 2022/05/24 22:35:27 guenther Exp $ */
/*-
* Copyright (c) 2014 Andrew Turner
* Copyright (c) 2014 The FreeBSD Foundation
ldr x8, [x0], #8
ldr x9, .Lmagic
cmp x8, x9
- b.ne botch
+ b.ne .Lbotch
/* Restore the stack pointer */
ldr x8, [x0], #8
RETGUARD_CHECK(_longjmp, x15)
ret
-botch:
+.Lbotch:
bl _HIDDEN(abort)
END_STRONG(_longjmp)
-/* $OpenBSD: setjmp.S,v 1.4 2020/10/19 08:47:28 kettenis Exp $ */
+/* $OpenBSD: setjmp.S,v 1.5 2022/05/24 22:35:27 guenther Exp $ */
/*-
* Copyright (c) 2014 Andrew Turner
* Copyright (c) 2014 The FreeBSD Foundation
ldr x8, [x0], #8
ldr x9, .Lmagic
cmp x8, x9
- b.ne botch
+ b.ne .Lbotch
/* Restore the stack pointer */
ldr x8, [x0], #8
RETGUARD_CHECK(longjmp, x15)
ret
-botch:
+.Lbotch:
bl _HIDDEN(abort)
END_STRONG(longjmp)