diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-24 03:46:25 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-24 03:46:25 +0000 |
commit | 26d7ea91124a9405dff7755a78cfb6232dd15d80 (patch) | |
tree | c14436f6013bd76a2a339deb1424e02e73419957 /libm/s_ldexp.c | |
parent | 683c13fcc85276e9a030d6a98d50366bef03a6b6 (diff) |
Move powerpc specific optimizations (courtesy of apple) to powerpc
subdir. Put together a theoretical framework for adding arch specific
optimizations. Havn't tried this yet but it looks correct...
-Erik
Diffstat (limited to 'libm/s_ldexp.c')
-rw-r--r-- | libm/s_ldexp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libm/s_ldexp.c b/libm/s_ldexp.c index 5e7313e6e..085823aea 100644 --- a/libm/s_ldexp.c +++ b/libm/s_ldexp.c @@ -1,4 +1,3 @@ -#if !defined(__ppc__) /* @(#)s_ldexp.c 5.1 93/09/24 */ /* * ==================================================== @@ -31,4 +30,3 @@ static char rcsid[] = "$NetBSD: s_ldexp.c,v 1.6 1995/05/10 20:47:40 jtc Exp $"; if(!finite(value)||value==0.0) errno = ERANGE; return value; } -#endif /* !__ppc__ */ |