std_limits.h (__glibcpp_char_is_signed): Use __CHAR_UNSIGNED__.
* include/bits/std_limits.h(__glibcpp_char_is_signed): Use __CHAR_UNSIGNED__. * config/os/gnu-linux/bits/os_defines.h(__glibcpp_char_is_signed): Likewise. * config/os/aix/bits/os_defines.h(__glibcpp_plain_char_is_signed): Remove. From-SVN: r44791
This commit is contained in:
parent
f80f7e8cd8
commit
63814ec191
libstdc++-v3
@ -1,3 +1,13 @@
|
||||
2001-08-10 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
|
||||
|
||||
* include/bits/std_limits.h(__glibcpp_char_is_signed): Use
|
||||
__CHAR_UNSIGNED__.
|
||||
|
||||
* config/os/gnu-linux/bits/os_defines.h(__glibcpp_char_is_signed):
|
||||
Likewise.
|
||||
* config/os/aix/bits/os_defines.h(__glibcpp_plain_char_is_signed):
|
||||
Remove.
|
||||
|
||||
2001-08-10 Loren J. Rittle <ljrittle@acm.org>
|
||||
|
||||
* testsuite/testsuite_hooks.h (__set_testsuite_memlimit): Add
|
||||
@ -8,7 +18,7 @@
|
||||
colon in $(objdir).
|
||||
* include/Makefile.in: Rebuilt.
|
||||
|
||||
2001-08-10 Gunter Winkler gunter.winkler@mathematik.tu-chemnitz.de
|
||||
2001-08-10 Gunter Winkler <gunter.winkler@mathematik.tu-chemnitz.de>
|
||||
|
||||
* include/bits/std_complex.h (complex<long double>::operator*=,
|
||||
complex<long double>::operator/=): Fix thinko.
|
||||
|
@ -55,7 +55,6 @@
|
||||
#undef _G_USING_THUNKS
|
||||
#define _G_USING_THUNKS 0
|
||||
|
||||
#define __glibcpp_plain_char_is_signed false
|
||||
#define __glibcpp_long_double_bits 64
|
||||
|
||||
#if !defined(_AIX51) || !defined(__64BIT__)
|
||||
|
@ -64,7 +64,6 @@ typedef __loff_t __off64_t;
|
||||
# endif
|
||||
|
||||
#if defined (__powerpc__) || defined (__s390__) || defined (__s390x__)
|
||||
#define __glibcpp_plain_char_is_signed false
|
||||
#define __glibcpp_wchar_t_is_signed true
|
||||
#endif
|
||||
|
||||
|
@ -77,7 +77,9 @@
|
||||
#ifndef __glibcpp_char_bits
|
||||
#define __glibcpp_char_bits 8
|
||||
#endif
|
||||
#ifndef __glibcpp_plain_char_is_signed
|
||||
#ifndef __CHAR_UNSIGNED__
|
||||
#define __glibcpp_plain_char_is_signed false
|
||||
#else
|
||||
#define __glibcpp_plain_char_is_signed true
|
||||
#endif
|
||||
#ifndef __glibcpp_short_bits
|
||||
|
Loading…
Reference in New Issue
Block a user