summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/libc/arch/hppa/string/Makefile.inc4
-rw-r--r--lib/libc/arch/hppa/string/ffs.S60
2 files changed, 2 insertions, 62 deletions
diff --git a/lib/libc/arch/hppa/string/Makefile.inc b/lib/libc/arch/hppa/string/Makefile.inc
index 199646002f9..9ed51775fe9 100644
--- a/lib/libc/arch/hppa/string/Makefile.inc
+++ b/lib/libc/arch/hppa/string/Makefile.inc
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile.inc,v 1.5 2002/02/25 17:30:28 mickey Exp $
+# $OpenBSD: Makefile.inc,v 1.6 2002/07/08 21:31:22 mickey Exp $
SRCS+= bcmp.c bzero.c memchr.c memcmp.c memset.c index.c rindex.c \
strcat.c strcmp.c strcpy.c strcspn.c strlen.c \
strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
strspn.c strstr.c swab.c
-SRCS+= ffs.S strlcpy.c
+SRCS+= ffs.c strlcpy.c
diff --git a/lib/libc/arch/hppa/string/ffs.S b/lib/libc/arch/hppa/string/ffs.S
deleted file mode 100644
index fac55d9fe3d..00000000000
--- a/lib/libc/arch/hppa/string/ffs.S
+++ /dev/null
@@ -1,60 +0,0 @@
-/* $OpenBSD: ffs.S,v 1.3 2001/06/04 23:14:02 mickey Exp $ */
-
-/*
- * Copyright (c) 1990, 1991, 1992, 1994, The University of Utah and
- * the Computer Systems Laboratory at the University of Utah (CSL).
- * All rights reserved.
- *
- * Permission to use, copy, modify and distribute this software and its
- * documentation is hereby granted, provided that both the copyright
- * notice and this permission notice appear in all copies of the
- * software, derivative works or modified versions, and any portions
- * thereof, and that both notices appear in supporting documentation.
- *
- * THE UNIVERSITY OF UTAH AND CSL ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS
- * IS" CONDITION. THE UNIVERSITY OF UTAH AND CSL DISCLAIM ANY LIABILITY OF
- * ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- *
- * CSL requests users of this software to return to csl-dist@cs.utah.edu any
- * improvements that they make and grant CSL redistribution rights.
- *
- */
-
-#include <machine/asm.h>
-
-#ifdef SYSLIBC_SCCS
- .text
- .asciz "$OpenBSD: ffs.S,v 1.3 2001/06/04 23:14:02 mickey Exp $"
- .align 4
-#endif
-
-/*
- * ffs(bitmask)
- *
- * Return the position of the "most significant" bit in `bitmask'.
- * Since this is similar to the VAX ffs instruction, bits in a word
- * are numbered as "32, 31, ... 1", 0 is returned if no bits are set.
- */
-
-LEAF_ENTRY(ffs)
- comb,= arg0,r0,ffsdone ; If arg0 is 0
- or r0,r0,ret0 ; return 0
- ldi 32,ret0 ; Set return to high bit
- extru,= arg0,31,16,r0 ; If low 16 bits are non-zero
- addi,tr -16,ret0,ret0 ; subtract 16 from bitpos
- shd r0,arg0,16,arg0 ; else shift right 16 bits
- extru,= arg0,31,8,r0 ; If low 8 bits are non-zero
- addi,tr -8,ret0,ret0 ; subtract 8 from bitpos
- shd r0,arg0,8,arg0 ; else shift right 8 bits
- extru,= arg0,31,4,r0 ; If low 4 bits are non-zero
- addi,tr -4,ret0,ret0 ; subtract 4 from bitpos
- shd r0,arg0,4,arg0 ; else shift right 4 bits
- extru,= arg0,31,2,r0 ; If low 2 bits are non-zero
- addi,tr -2,ret0,ret0 ; subtract 2 from bitpos
- shd r0,arg0,2,arg0 ; else shift right 2 bits
- extru,= arg0,31,1,r0 ; If low bit is non-zero
- addi -1,ret0,ret0 ; subtract 1 from bitpos
-ffsdone:
-EXIT(ffs)
-
- .end