diff options
Diffstat (limited to 'lib/libc/arch/sparc64/string/ffs.S')
-rw-r--r-- | lib/libc/arch/sparc64/string/ffs.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/sparc64/string/ffs.S b/lib/libc/arch/sparc64/string/ffs.S index 2f1aa6fa72d..7552c407b45 100644 --- a/lib/libc/arch/sparc64/string/ffs.S +++ b/lib/libc/arch/sparc64/string/ffs.S @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs.S,v 1.8 2018/01/18 23:42:13 deraadt Exp $ */ +/* $OpenBSD: ffs.S,v 1.9 2022/12/08 01:25:43 guenther Exp $ */ /* * Copyright (c) 1992, 1993 @@ -50,9 +50,9 @@ */ ENTRY(ffs) #ifdef __PIC__ - PICCY_SET(_C_LABEL(__ffstab), %o2, %o3) + PICCY_SET(__ffstab, %o2, %o3) #else - set _C_LABEL(__ffstab), %o2 + set __ffstab, %o2 #endif andcc %o0, 0xff, %o1 ! get low byte be,a 1f ! try again if 0 @@ -86,7 +86,7 @@ ENTRY(ffs) END(ffs) .protected ffs -_C_LABEL(__ffstab): +__ffstab: .byte -24,1,2,1,3,1,2,1,4,1,2,1,3,1,2,1 /* 00-0f */ .byte 5,1,2,1,3,1,2,1,4,1,2,1,3,1,2,1 /* 10-1f */ .byte 6,1,2,1,3,1,2,1,4,1,2,1,3,1,2,1 /* 20-2f */ |