This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: New boost regressions since yesterday for gcc 3.0.1


Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> writes:

[...]

| following testcase tp.C. Since chars are signed on linux, I expect

Actually, the bug is plateform independent and fixed by the below --
silly of me.  Mark, I think this should on the branch as well.  Applied
to mainline.  I'll check in a full testcase later.

-- Gaby
CodeSourcery, LLC                       http://www.codesourcery.com

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/ChangeLog,v
retrieving revision 1.739
diff -p -r1.739 ChangeLog
*** ChangeLog   2001/08/13 12:59:38     1.739
--- ChangeLog   2001/08/14 21:01:22
***************
*** 1,3 ****
--- 1,7 ----
+ 2001-08-14  Gabriel Dos Reis  <gdr@codesourcery.com>
+ 
+       * include/bits/std_limits.h: Fix thinko.
+ 
  2001-08-13  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
  
        * include/bits/ostream.tcc (__pad_char): Change toplevel '__fmt'
Index: include/bits/std_limits.h
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/include/bits/std_limits.h,v
retrieving revision 1.2
diff -p -r1.2 std_limits.h
*** std_limits.h        2001/08/11 08:36:52     1.2
--- std_limits.h        2001/08/14 21:01:23
***************
*** 77,83 ****
  #ifndef __glibcpp_char_bits
  #define __glibcpp_char_bits 8
  #endif
! #ifndef __CHAR_UNSIGNED__
  #define __glibcpp_plain_char_is_signed false
  #else
  #define __glibcpp_plain_char_is_signed true
--- 77,83 ----
  #ifndef __glibcpp_char_bits
  #define __glibcpp_char_bits 8
  #endif
! #ifdef __CHAR_UNSIGNED__
  #define __glibcpp_plain_char_is_signed false
  #else
  #define __glibcpp_plain_char_is_signed true



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]