We no longer have _C_FUNC: Use _C_LABEL instead.

This commit is contained in:
bjh21 2000-12-29 13:39:39 +00:00
parent e0a4556c29
commit a88be20997
5 changed files with 23 additions and 23 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: __setjmp14.S,v 1.1 2000/05/09 21:55:47 bjh21 Exp $ */
/* $NetBSD: __setjmp14.S,v 1.2 2000/12/29 13:39:39 bjh21 Exp $ */
/*
* Copyright (c) 1997 Mark Brinicombe
@ -51,7 +51,7 @@ ENTRY(__setjmp14)
add r2, r0, #(_JB_SIGMASK * 4)
mov r1, #0x00000000
mov r0, #0x00000000
bl _C_FUNC(__sigprocmask14)
bl _C_LABEL(__sigprocmask14)
ldmfd r13!, {r0-r2, r14}
ldr r1, Lsetjmp_magic
@ -90,7 +90,7 @@ ENTRY(__longjmp14)
mov r2, #0x00000000
add r1, r0, #(_JB_SIGMASK * 4)
mov r0, #3 /* SIG_SETMASK */
bl _C_FUNC(__sigprocmask14)
bl _C_LABEL(__sigprocmask14)
ldmfd r13!, {r0-r2, r14}
add r0, r0, #4
@ -125,6 +125,6 @@ ENTRY(__longjmp14)
/* validation failed, die die die. */
botch:
bl _C_FUNC(longjmperror)
bl _C_FUNC(abort)
bl _C_LABEL(longjmperror)
bl _C_LABEL(abort)
b . - 8 /* Cannot get here */

View File

@ -1,4 +1,4 @@
/* $NetBSD: __sigsetjmp14.S,v 1.1 2000/05/09 21:55:47 bjh21 Exp $ */
/* $NetBSD: __sigsetjmp14.S,v 1.2 2000/12/29 13:39:39 bjh21 Exp $ */
/*
* Copyright (c) 1997 Mark Brinicombe
@ -47,8 +47,8 @@
ENTRY(__sigsetjmp14)
teq r1, #0
beq _C_FUNC(_setjmp)
b _C_FUNC(__setjmp14)
beq _C_LABEL(_setjmp)
b _C_LABEL(__setjmp14)
L_setjmp_magic:
.word _JB_MAGIC__SETJMP
@ -57,5 +57,5 @@ ENTRY(__siglongjmp14)
ldr r2, L_setjmp_magic
ldr r3, [r0]
teq r2, r3
beq _C_FUNC(_longjmp)
b _C_FUNC(__longjmp14)
beq _C_LABEL(_longjmp)
b _C_LABEL(__longjmp14)

View File

@ -1,4 +1,4 @@
/* $NetBSD: _setjmp.S,v 1.1 2000/05/09 21:55:47 bjh21 Exp $ */
/* $NetBSD: _setjmp.S,v 1.2 2000/12/29 13:39:39 bjh21 Exp $ */
/*
* Copyright (c) 1997 Mark Brinicombe
@ -109,6 +109,6 @@ ENTRY(_longjmp)
/* validation failed, die die die. */
botch:
bl _C_FUNC(longjmperror)
bl _C_FUNC(abort)
bl _C_LABEL(longjmperror)
bl _C_LABEL(abort)
b . - 8 /* Cannot get here */

View File

@ -1,4 +1,4 @@
/* $NetBSD: setjmp.S,v 1.1 2000/05/09 21:55:49 bjh21 Exp $ */
/* $NetBSD: setjmp.S,v 1.2 2000/12/29 13:39:39 bjh21 Exp $ */
/*
* Copyright (c) 1997 Mark Brinicombe
@ -50,7 +50,7 @@ ENTRY(setjmp)
stmfd r13!, {r0, r14}
mov r0, #0x00000000
bl _C_FUNC(sigblock)
bl _C_LABEL(sigblock)
mov r1, r0
ldmfd r13!, {r0, r14}
@ -96,7 +96,7 @@ ENTRY(longjmp)
stmfd r13!, {r0, r1, r14}
mov r0, r2
bl _C_FUNC(sigsetmask)
bl _C_LABEL(sigsetmask)
ldmfd r13!, {r0, r1, r14}
@ -132,6 +132,6 @@ ENTRY(longjmp)
/* validation failed, die die die. */
botch:
bl _C_FUNC(longjmperror)
bl _C_FUNC(abort)
bl _C_LABEL(longjmperror)
bl _C_LABEL(abort)
b . - 8 /* Cannot get here */

View File

@ -1,4 +1,4 @@
/* $NetBSD: sigsetjmp.S,v 1.1 2000/05/09 21:55:49 bjh21 Exp $ */
/* $NetBSD: sigsetjmp.S,v 1.2 2000/12/29 13:39:39 bjh21 Exp $ */
/*
* Copyright (c) 1997 Mark Brinicombe
@ -47,8 +47,8 @@
ENTRY(sigsetjmp)
teq r1, #0
beq _C_FUNC(_setjmp)
b _C_FUNC(setjmp)
beq _C_LABEL(_setjmp)
b _C_LABEL(setjmp)
L_setjmp_magic:
.word _JB_MAGIC__SETJMP
@ -57,5 +57,5 @@ ENTRY(siglongjmp)
ldr r2, L_setjmp_magic
ldr r3, [r0]
teq r2, r3
beq _C_FUNC(_longjmp)
b _C_FUNC(longjmp)
beq _C_LABEL(_longjmp)
b _C_LABEL(longjmp)