diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-04-16 15:45:29 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-04-16 15:45:29 +0000 |
commit | 57ff95d35bbcb72c45648968b4d7e3b5be1e71e5 (patch) | |
tree | d80f8632261215f9d2a9a959de9716fa553dc450 /newlib/libc/machine/powerpc/simdldtoa.c | |
parent | 8425a8ce499b9e9d15ff13d44d19f4b5cafbeb67 (diff) | |
download | cygnal-57ff95d35bbcb72c45648968b4d7e3b5be1e71e5.tar.gz cygnal-57ff95d35bbcb72c45648968b4d7e3b5be1e71e5.tar.bz2 cygnal-57ff95d35bbcb72c45648968b4d7e3b5be1e71e5.zip |
2003-04-16 Jeff Johnston <jjohnstn@redhat.com>
* newlib/libc/machine/powerpc (ato*fix*.c,strto*fix*.c): Shield
all code with #ifdef __SPE__ test.
* newlib/libc/machine/powerpc (simdldtoa.c, ufix64toa.c): Ditto.
Diffstat (limited to 'newlib/libc/machine/powerpc/simdldtoa.c')
-rw-r--r-- | newlib/libc/machine/powerpc/simdldtoa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/machine/powerpc/simdldtoa.c b/newlib/libc/machine/powerpc/simdldtoa.c index d15133afa..71ff12143 100644 --- a/newlib/libc/machine/powerpc/simdldtoa.c +++ b/newlib/libc/machine/powerpc/simdldtoa.c @@ -3,6 +3,8 @@ * This program has been placed in the public domain. */ +#ifdef __SPE__ + #include <_ansi.h> #include <reent.h> #include <string.h> @@ -3718,6 +3720,4 @@ for (i=0; i < n; i++) *nan++ = *p++; } - - - +#endif /* __SPE__ */ |