diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-05-26 14:30:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-05-26 14:30:51 +0000 |
commit | 1ab18a5bfb049b07fb58de178f13bbe5e4c0a4e6 (patch) | |
tree | c7bf2264fd7a549a81eef4163c285333028079c6 /sysdeps/powerpc/fpu/s_fabs.S | |
parent | 1f708405fc137d3235803832110a7eec8f14d894 (diff) | |
download | glibc-1ab18a5bfb049b07fb58de178f13bbe5e4c0a4e6.tar.gz glibc-1ab18a5bfb049b07fb58de178f13bbe5e4c0a4e6.tar.xz glibc-1ab18a5bfb049b07fb58de178f13bbe5e4c0a4e6.zip |
Add space inf weak_alias use.
Diffstat (limited to 'sysdeps/powerpc/fpu/s_fabs.S')
-rw-r--r-- | sysdeps/powerpc/fpu/s_fabs.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/powerpc/fpu/s_fabs.S b/sysdeps/powerpc/fpu/s_fabs.S index 157ef09507..ab9a3a99bb 100644 --- a/sysdeps/powerpc/fpu/s_fabs.S +++ b/sysdeps/powerpc/fpu/s_fabs.S @@ -25,13 +25,13 @@ ENTRY(__fabs) blr END(__fabs) -weak_alias(__fabs,fabs) +weak_alias (__fabs,fabs) /* It turns out that it's safe to use this code even for single-precision. */ strong_alias(__fabs,__fabsf) -weak_alias(__fabs,fabsf) +weak_alias (__fabs,fabsf) #ifdef NO_LONG_DOUBLE -weak_alias(__fabs,__fabsl) -weak_alias(__fabs,fabsl) +weak_alias (__fabs,__fabsl) +weak_alias (__fabs,fabsl) #endif |