summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/stdint.h
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2006-08-16 21:39:43 +0000
committerJeff Johnston <jjohnstn@redhat.com>2006-08-16 21:39:43 +0000
commit734e8414355b9e4c3c95ccfc9c72aa813d83d89a (patch)
treea9b32a7a4b1efd1e534737ab926567e0dc1e2869 /newlib/libc/include/stdint.h
parent0486bb7f0d8906f15ce2bb16936d40d07990e8a8 (diff)
downloadcygnal-734e8414355b9e4c3c95ccfc9c72aa813d83d89a.tar.gz
cygnal-734e8414355b9e4c3c95ccfc9c72aa813d83d89a.tar.bz2
cygnal-734e8414355b9e4c3c95ccfc9c72aa813d83d89a.zip
2006-08-16 Joel Schopp <jschopp@austin.ibm.com>
* configure.host: Add spu support. * libc/include/stdint.h: Ditto. * libc/include/machine/ieeefp.h: Ditto. * libc/include/machine/setjmp.h: Ditto. * libc/include/sys/config.h: Ditto. * libc/include/sys/types.h: Ditto. * libc/machine/spu/Makefile.am: New file. * libc/machine/spu/Makefile.in: Ditto. * libc/machine/spu/aclocal.m4: Ditto. * libc/machine/spu/configure: Ditto. * libc/machine/spu/configure.in: Ditto. * libc/machine/spu/memcpy.c: Ditto. * libc/machine/spu/setjmp.S: Ditto.
Diffstat (limited to 'newlib/libc/include/stdint.h')
-rw-r--r--newlib/libc/include/stdint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/stdint.h b/newlib/libc/include/stdint.h
index 328b094c9..1fa36517a 100644
--- a/newlib/libc/include/stdint.h
+++ b/newlib/libc/include/stdint.h
@@ -37,7 +37,7 @@ extern "C" {
/* Check if "long" is 64bit or 32bit wide */
#if __STDINT_EXP(LONG_MAX) > 0x7fffffff
#define __have_long64 1
-#elif __STDINT_EXP(LONG_MAX) == 0x7fffffff
+#elif __STDINT_EXP(LONG_MAX) == 0x7fffffff && !defined(__SPU__)
#define __have_long32 1
#endif