diff options
Diffstat (limited to 'sysdeps/i386/fpu/s_frexpf.S')
-rw-r--r-- | sysdeps/i386/fpu/s_frexpf.S | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sysdeps/i386/fpu/s_frexpf.S b/sysdeps/i386/fpu/s_frexpf.S index 6254cb7791..f8d903d778 100644 --- a/sysdeps/i386/fpu/s_frexpf.S +++ b/sysdeps/i386/fpu/s_frexpf.S @@ -18,8 +18,6 @@ <http://www.gnu.org/licenses/>. */ #include <machine/asm.h> -#include "bp-sym.h" -#include "bp-asm.h" .section .rodata @@ -34,12 +32,12 @@ two25: .byte 0, 0, 0, 0x4c #define MO(op) op #endif -#define PARMS LINKAGE /* no space for saved regs */ +#define PARMS 4 /* no space for saved regs */ #define VAL PARMS #define EXPP VAL+4 .text -ENTRY (BP_SYM (__frexpf)) +ENTRY (__frexpf) movl VAL(%esp), %eax xorl %ecx, %ecx @@ -78,5 +76,5 @@ ENTRY (BP_SYM (__frexpf)) movl %ecx, (%eax) ret -END (BP_SYM (__frexpf)) -weak_alias (BP_SYM (__frexpf), BP_SYM (frexpf)) +END (__frexpf) +weak_alias (__frexpf, frexpf) |