Remove all the .abicalls assembler directives - "SYS.h" already has that.

This commit is contained in:
simonb 2000-12-13 23:29:06 +00:00
parent 488ef36c45
commit 1bb9a3396c
16 changed files with 32 additions and 98 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: Ovfork.S,v 1.7 1999/01/14 22:48:20 kleink Exp $ */ /* $NetBSD: Ovfork.S,v 1.8 2000/12/13 23:29:06 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)Ovfork.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)Ovfork.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: Ovfork.S,v 1.7 1999/01/14 22:48:20 kleink Exp $") ASMSTR("$NetBSD: Ovfork.S,v 1.8 2000/12/13 23:29:06 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
WARN_REFERENCES(vfork, \ WARN_REFERENCES(vfork, \
"warning: reference to compatibility vfork(); include <unistd.h> for correct reference") "warning: reference to compatibility vfork(); include <unistd.h> for correct reference")

View File

@ -1,4 +1,4 @@
/* $NetBSD: __sigreturn14.S,v 1.1 1998/09/27 22:59:40 jonathan Exp $ */ /* $NetBSD: __sigreturn14.S,v 1.2 2000/12/13 23:29:06 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)sigreturn.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)sigreturn.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: __sigreturn14.S,v 1.1 1998/09/27 22:59:40 jonathan Exp $") ASMSTR("$NetBSD: __sigreturn14.S,v 1.2 2000/12/13 23:29:06 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
/* /*
* We must preserve the state of the registers as the user has set them up. * We must preserve the state of the registers as the user has set them up.
*/ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: __vfork14.S,v 1.2 1999/01/14 22:48:20 kleink Exp $ */ /* $NetBSD: __vfork14.S,v 1.3 2000/12/13 23:29:06 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)Ovfork.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)Ovfork.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: __vfork14.S,v 1.2 1999/01/14 22:48:20 kleink Exp $") ASMSTR("$NetBSD: __vfork14.S,v 1.3 2000/12/13 23:29:06 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
/* /*
* pid = vfork(); * pid = vfork();
* *

View File

@ -1,4 +1,4 @@
/* $NetBSD: brk.S,v 1.12 2000/07/04 07:37:33 kleink Exp $ */ /* $NetBSD: brk.S,v 1.13 2000/12/13 23:29:06 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)brk.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)brk.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: brk.S,v 1.12 2000/07/04 07:37:33 kleink Exp $") ASMSTR("$NetBSD: brk.S,v 1.13 2000/12/13 23:29:06 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
.globl _C_LABEL(__minbrk) .globl _C_LABEL(__minbrk)
.globl _C_LABEL(__curbrk) .globl _C_LABEL(__curbrk)
.globl _C_LABEL(_end) .globl _C_LABEL(_end)

View File

@ -1,4 +1,4 @@
/* $NetBSD: cerror.S,v 1.8 2000/05/29 15:07:41 castor Exp $ */ /* $NetBSD: cerror.S,v 1.9 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)cerror.s 8.1 (Berkeley) 6/16/93") ASMSTR("from: @(#)cerror.s 8.1 (Berkeley) 6/16/93")
ASMSTR("$NetBSD: cerror.S,v 1.8 2000/05/29 15:07:41 castor Exp $") ASMSTR("$NetBSD: cerror.S,v 1.9 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
.globl _C_LABEL(errno) .globl _C_LABEL(errno)
LEAF_NOPROFILE(__cerror) LEAF_NOPROFILE(__cerror)
.set noreorder .set noreorder

View File

@ -1,4 +1,4 @@
/* $NetBSD: exect.S,v 1.6 1999/01/14 22:48:21 kleink Exp $ */ /* $NetBSD: exect.S,v 1.7 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved. * The Regents of the University of California. All rights reserved.
@ -39,13 +39,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)exect.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)exect.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: exect.S,v 1.6 1999/01/14 22:48:21 kleink Exp $") ASMSTR("$NetBSD: exect.S,v 1.7 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
LEAF(exect) LEAF(exect)
#ifdef ABICALLS #ifdef ABICALLS
.set noreorder .set noreorder

View File

@ -1,4 +1,4 @@
/* $NetBSD: fork.S,v 1.7 2000/06/26 06:32:58 kleink Exp $ */ /* $NetBSD: fork.S,v 1.8 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)fork.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)fork.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: fork.S,v 1.7 2000/06/26 06:32:58 kleink Exp $") ASMSTR("$NetBSD: fork.S,v 1.8 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
#ifdef WEAK_ALIAS #ifdef WEAK_ALIAS
WEAK_ALIAS(fork, _fork) WEAK_ALIAS(fork, _fork)
#endif #endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: pipe.S,v 1.7 2000/09/28 08:38:54 kleink Exp $ */ /* $NetBSD: pipe.S,v 1.8 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)pipe.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)pipe.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: pipe.S,v 1.7 2000/09/28 08:38:54 kleink Exp $") ASMSTR("$NetBSD: pipe.S,v 1.8 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
#ifdef WEAK_ALIAS #ifdef WEAK_ALIAS
WEAK_ALIAS(pipe, _pipe) WEAK_ALIAS(pipe, _pipe)
#endif #endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: ptrace.S,v 1.6 1999/01/14 22:48:21 kleink Exp $ */ /* $NetBSD: ptrace.S,v 1.7 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)ptrace.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)ptrace.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: ptrace.S,v 1.6 1999/01/14 22:48:21 kleink Exp $") ASMSTR("$NetBSD: ptrace.S,v 1.7 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
LEAF(ptrace) LEAF(ptrace)
#ifdef ABICALLS #ifdef ABICALLS
.set noreorder .set noreorder

View File

@ -1,4 +1,4 @@
/* $NetBSD: sbrk.S,v 1.12 2000/06/26 06:25:42 kleink Exp $ */ /* $NetBSD: sbrk.S,v 1.13 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)sbrk.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)sbrk.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: sbrk.S,v 1.12 2000/06/26 06:25:42 kleink Exp $") ASMSTR("$NetBSD: sbrk.S,v 1.13 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
.globl _C_LABEL(__curbrk) .globl _C_LABEL(__curbrk)
.globl _C_LABEL(_end) .globl _C_LABEL(_end)

View File

@ -1,4 +1,4 @@
/* $NetBSD: setlogin.S,v 1.7 1999/01/14 22:48:21 kleink Exp $ */ /* $NetBSD: setlogin.S,v 1.8 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)setlogin.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)setlogin.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: setlogin.S,v 1.7 1999/01/14 22:48:21 kleink Exp $") ASMSTR("$NetBSD: setlogin.S,v 1.8 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
LEAF(setlogin) LEAF(setlogin)
#ifdef ABICALLS #ifdef ABICALLS
.set noreorder .set noreorder

View File

@ -1,4 +1,4 @@
/* $NetBSD: sigpending.S,v 1.8 1999/01/14 22:48:21 kleink Exp $ */ /* $NetBSD: sigpending.S,v 1.9 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)sigpending.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)sigpending.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: sigpending.S,v 1.8 1999/01/14 22:48:21 kleink Exp $") ASMSTR("$NetBSD: sigpending.S,v 1.9 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
WARN_REFERENCES(sigpending, \ WARN_REFERENCES(sigpending, \
"warning: reference to compatibility sigpending(); include <signal.h> for correct reference") "warning: reference to compatibility sigpending(); include <signal.h> for correct reference")

View File

@ -1,4 +1,4 @@
/* $NetBSD: sigprocmask.S,v 1.8 1999/01/14 22:48:21 kleink Exp $ */ /* $NetBSD: sigprocmask.S,v 1.9 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)sigprocmask.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)sigprocmask.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: sigprocmask.S,v 1.8 1999/01/14 22:48:21 kleink Exp $") ASMSTR("$NetBSD: sigprocmask.S,v 1.9 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
WARN_REFERENCES(sigprocmask, \ WARN_REFERENCES(sigprocmask, \
"warning: reference to compatibility sigprocmask(); include <signal.h> for correct reference") "warning: reference to compatibility sigprocmask(); include <signal.h> for correct reference")

View File

@ -1,4 +1,4 @@
/* $NetBSD: sigreturn.S,v 1.5 1998/12/02 01:01:04 thorpej Exp $ */ /* $NetBSD: sigreturn.S,v 1.6 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)sigreturn.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)sigreturn.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: sigreturn.S,v 1.5 1998/12/02 01:01:04 thorpej Exp $") ASMSTR("$NetBSD: sigreturn.S,v 1.6 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
/* /*
* We must preserve the state of the registers as the user has set them up. * We must preserve the state of the registers as the user has set them up.
*/ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: sigsuspend.S,v 1.8 1999/01/14 22:48:21 kleink Exp $ */ /* $NetBSD: sigsuspend.S,v 1.9 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,9 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)sigsuspend.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)sigsuspend.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: sigsuspend.S,v 1.8 1999/01/14 22:48:21 kleink Exp $") ASMSTR("$NetBSD: sigsuspend.S,v 1.9 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
WARN_REFERENCES(sigsuspend, \ WARN_REFERENCES(sigsuspend, \
"warning: reference to compatibility sigsuspend(); include <signal.h> for correct reference") "warning: reference to compatibility sigsuspend(); include <signal.h> for correct reference")

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscall.S,v 1.3 1996/09/17 01:33:01 jonathan Exp $ */ /* $NetBSD: syscall.S,v 1.4 2000/12/13 23:29:07 simonb Exp $ */
/*- /*-
* Copyright (c) 1991, 1993 * Copyright (c) 1991, 1993
@ -40,13 +40,7 @@
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)syscall.s 8.1 (Berkeley) 6/4/93") ASMSTR("from: @(#)syscall.s 8.1 (Berkeley) 6/4/93")
ASMSTR("$NetBSD: syscall.S,v 1.3 1996/09/17 01:33:01 jonathan Exp $") ASMSTR("$NetBSD: syscall.S,v 1.4 2000/12/13 23:29:07 simonb Exp $")
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef ABICALLS
.abicalls
#endif
#define SYS_syscall 0
RSYSCALL(syscall) RSYSCALL(syscall)