S390: Define SIZE_MAX as unsigned long (BZ #16712).

This commit is contained in:
Stefan Liebler 2014-03-24 16:46:51 +01:00 committed by Andreas Krebbel
parent a2d86bf1ec
commit 26011b5cfa
4 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,13 @@
2014-03-24 Stefan Liebler <stli@linux.vnet.ibm.com>
[BZ #16712]
* sysdeps/s390/s390-32/bits/wordsize.h
(__WORDSIZE32_SIZE_ULONG): New define.
* sysdeps/s390/s390-64/bits/wordsize.h
(__WORDSIZE32_SIZE_ULONG): Likewise.
* sysdeps/generic/stdint.h (SIZE_MAX):
Define as UL if __WORDSIZE32_SIZE_ULONG.
2014-03-24 Stefan Liebler <stli@linux.vnet.ibm.com>
[BZ #16713]

View File

@ -260,7 +260,11 @@ typedef unsigned long long int uintmax_t;
# if __WORDSIZE == 64
# define SIZE_MAX (18446744073709551615UL)
# else
# define SIZE_MAX (4294967295U)
# ifdef __WORDSIZE32_SIZE_ULONG
# define SIZE_MAX (4294967295UL)
# else
# define SIZE_MAX (4294967295U)
# endif
# endif
/* Limits of `wchar_t'. */

View File

@ -4,6 +4,7 @@
# define __WORDSIZE 64
#else
# define __WORDSIZE 32
# define __WORDSIZE32_SIZE_ULONG 1
#endif
#if !defined __NO_LONG_DOUBLE_MATH && !defined __LONG_DOUBLE_MATH_OPTIONAL

View File

@ -4,6 +4,7 @@
# define __WORDSIZE 64
#else
# define __WORDSIZE 32
# define __WORDSIZE32_SIZE_ULONG 1
#endif
#if !defined __NO_LONG_DOUBLE_MATH && !defined __LONG_DOUBLE_MATH_OPTIONAL