]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/i386/fpu/e_log10f.S
Optimize libm
[thirdparty/glibc.git] / sysdeps / i386 / fpu / e_log10f.S
index da5069d583832788be6c92231d78116710d16c94..38a4833d1ad5281341b9510fab8c4ed07a56739b 100644 (file)
@@ -8,14 +8,12 @@
 
 #include <machine/asm.h>
 
-RCSID("$NetBSD: $")
-
 #ifdef __ELF__
-       .section .rodata
+       .section .rodata.cst8,"aM",@progbits,8
 #else
        .text
 #endif
-       .align ALIGNARG(4)
+       .p2align 3
        ASM_TYPE_DIRECTIVE(one,@object)
 one:   .double 1.0
        ASM_SIZE_DIRECTIVE(one)
@@ -28,9 +26,9 @@ limit:        .double 0.29
 
 
 #ifdef PIC
-#define MO(op) op##@GOTOFF(%edx)
+# define MO(op) op##@GOTOFF(%edx)
 #else
-#define MO(op) op
+# define MO(op) op
 #endif
 
        .text
@@ -65,3 +63,4 @@ ENTRY(__ieee754_log10f)
        fstp    %st(1)
        ret
 END (__ieee754_log10f)
+strong_alias (__ieee754_log10f, __log10f_finite)