gcc/libstdc++-v3 ChangeLog Makefile.in acinclu ...

bkoz@gcc.gnu.org bkoz@gcc.gnu.org
Fri Jun 28 01:22:00 GMT 2002


CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_1-branch
Changes by:	bkoz@gcc.gnu.org	2002-06-28 01:22:46

Modified files:
	libstdc++-v3   : ChangeLog Makefile.in acinclude.m4 aclocal.m4 
	                 configure configure.in configure.target 
	libstdc++-v3/include: Makefile.am Makefile.in 
	libstdc++-v3/include/c: std_cerrno.h std_cmath.h std_csetjmp.h 
	                        std_cstdarg.h std_cstddef.h std_cstdio.h 
	                        std_cwchar.h std_cwctype.h 
	libstdc++-v3/include/c_std: std_cmath.h 
	libstdc++-v3/libio: Makefile.in 
	libstdc++-v3/libmath: Makefile.in 
	libstdc++-v3/libsupc++: Makefile.am Makefile.in eh_alloc.cc 
	                        new_op.cc pure.cc 
	libstdc++-v3/po: Makefile.in 
	libstdc++-v3/src: Makefile.am Makefile.in ext-inst.cc 
	libstdc++-v3/testsuite: Makefile.in 
	libstdc++-v3/testsuite/17_intro: header_cstdlib.cc 
	                                 header_cwchar.cc 
	libstdc++-v3/testsuite/22_locale: codecvt_members_char_char.cc 
	                                  codecvt_members_wchar_t_char.cc 
	                                  collate_members_char.cc 
	                                  collate_members_wchar_t.cc 
	                                  ctype_is_char.cc 
	                                  ctype_is_wchar_t.cc 
	                                  ctype_to_char.cc 
	                                  ctype_to_wchar_t.cc 
	                                  messages_members_char.cc 
	                                  money_get_members_char.cc 
	                                  money_get_members_wchar_t.cc 
	                                  money_put_members_char.cc 
	                                  money_put_members_wchar_t.cc 
	                                  moneypunct_members_char.cc 
	                                  moneypunct_members_wchar_t.cc 
	                                  num_get_members_char.cc 
	                                  num_get_members_wchar_t.cc 
	                                  num_put_members_char.cc 
	                                  num_put_members_wchar_t.cc 
	                                  numpunct_members_char.cc 
	                                  numpunct_members_wchar_t.cc 
	                                  time_get_members_char.cc 
	                                  time_get_members_wchar_t.cc 
	                                  time_put_members_char.cc 
	                                  time_put_members_wchar_t.cc 
	libstdc++-v3/testsuite/26_numerics: fabs_inline.cc 
	libstdc++-v3/testsuite/27_io: istream_extractor_arith.cc 
	                              istream_seeks.cc 
Added files:
	libstdc++-v3/include/c_compatibility: assert.h ctype.h errno.h 
	                                      float.h iso646.h limits.h 
	                                      locale.h math.h setjmp.h 
	                                      signal.h stdarg.h stddef.h 
	                                      stdio.h stdlib.h string.h 
	                                      time.h wchar.h wctype.h 
Removed files:
	libstdc++-v3/src: cmath.cc 

Log message:
	2002-06-28  Benjamin Kosnik  <bkoz@redhat.com>
	
	* include/c_compatibility: New.
	* include/c_compatibility/assert.h: New.
	* include/c_compatibility/ctype.h: New.
	* include/c_compatibility/errno.h: New.
	* include/c_compatibility/float.h: New.
	* include/c_compatibility/iso646.h: New.
	* include/c_compatibility/limits.h: New.
	* include/c_compatibility/locale.h: New.
	* include/c_compatibility/math.h: New.
	* include/c_compatibility/setjmp.h: New.
	* include/c_compatibility/signal.h: New.
	* include/c_compatibility/stdarg.h: New.
	* include/c_compatibility/stddef.h: New.
	* include/c_compatibility/stdio.h: New.
	* include/c_compatibility/stdlib.h: New.
	* include/c_compatibility/string.h: New.
	* include/c_compatibility/time.h: New.
	* include/c_compatibility/wchar.h: New.
	* include/c_compatibility/wctype.h: New.
	
	* include/c/std_cerrno.h: Get out of the way... define errno.
	* include/c/std_cmath.h: Add abs, modf overloads.
	Undefine C99 isms. Still not sure how to deal with this sanely.
	* include/c/std_csetjmp.h: Tweak.
	* include/c/std_cwchar.h: Include cstddef for size_t.
	
	* include/c_std/std_cmath.h: Remove extra function.
	
	Pendantic std usage in testsuites.
	* testsuite/17_intro/header_cstdlib.cc (test01): Qualify ldiv_t
	with std.
	* testsuite/17_intro/header_cwchar.cc: Tweak.
	* testsuite/22_locale/codecvt_members_char_char.cc (test03): Use
	std::setlocale.
	* testsuite/22_locale/ctype_to_wchar_t.cc (test05): Same.
	* testsuite/22_locale/ctype_to_char.cc (test05): Same.
	* testsuite/22_locale/ctype_is_wchar_t.cc (test05): Same.
	* testsuite/22_locale/ctype_is_char.cc (test05): Same.
	* testsuite/22_locale/codecvt_members_wchar_t_char.cc (test03): Same.
	* testsuite/22_locale/time_get_members_wchar_t.cc (test08): Same.
	* testsuite/22_locale/time_get_members_char.cc (test08): Same.
	* testsuite/22_locale/time_put_members_wchar_t.cc (test04): Same.
	* testsuite/22_locale/time_put_members_char.cc (test04): Same.
	* testsuite/22_locale/num_put_members_wchar_t.cc (test04): Same.
	* testsuite/22_locale/num_put_members_char.cc (test04): Same.
	* testsuite/22_locale/numpunct_members_wchar_t.cc (test03): Same.
	* testsuite/22_locale/numpunct_members_char.cc (test03): Same.
	* testsuite/22_locale/num_get_members_wchar_t.cc: Same.
	* testsuite/22_locale/num_get_members_char.cc: Same.
	* testsuite/22_locale/money_put_members_wchar_t.cc (test07): Same.
	* testsuite/22_locale/money_put_members_char.cc (test07): Same.
	* testsuite/22_locale/moneypunct_members_wchar_t.cc (test03): Same.
	* testsuite/22_locale/moneypunct_members_char.cc (test03): Same.
	* testsuite/22_locale/money_get_members_wchar_t.cc (test08): Same.
	* testsuite/22_locale/money_get_members_char.cc (test08): Same.
	* testsuite/22_locale/messages_members_char.cc (test03): Same.
	* testsuite/22_locale/collate_members_wchar_t.cc (test04): Same.
	* testsuite/22_locale/collate_members_char.cc (test04): Same.
	* testsuite/26_numerics/fabs_inline.cc: Use std::printf.
	* testsuite/27_io/istream_seeks.cc (test02): Qualify abort.
	* testsuite/27_io/istream_extractor_arith.cc (test11): Qualify strtol.
	
	2002-06-28  Benjamin Kosnik  <bkoz@redhat.com>
	
	* libsupc++/Makefile.am (libsupc__convenience_la_SOURCES): Add
	c_sources.
	
	2002-06-28  Benjamin Kosnik  <bkoz@redhat.com>
	
	* src/ext-inst.cc (__gnu_cxx): Use instead of std:: for extensions.
	Use size_type instead of unsigned long.
	
	2002-06-28  Steve Ellcey  <sje@cup.hp.com>
	
	* src/ext-inst.cc (_S_fetch): Add explicit templates for char and
	wchar types.
	(_S_min_len): Ditto.
	
	2002-06-28  Benjamin Kosnik  <bkoz@redhat.com>
	
	* include/Makefile.am: Add rules.
	* include/Makefile.in: Regenerate.
	
	* acinclude.m4: Define GLIBCPP_C_HEADERS_COMPATIBILITY.
	* aclocal.m4: Regenerate.
	* configure: Regenerate.
	* configure.target (c_model, c_compatibility): Add.
	
	* libsupc++/Makefile.am (c_sources): New.
	(libsupc___la_SOURCES): Add c_sources.
	(LTCOMPILE): Remove INCLUDES.
	(GCC_INCLUDES): New.
	(C_COMPILE): New, like COMPILE but without INCLUDES.
	(cxa_demangle.o): Use C_COMPILE.
	(dyn-string.o): Use C_COMPILE.
	
	* include/c/std_cstdarg.h: Define __need___va_list.
	* include/c/std_cstddef.h: Define need_size_t, need_ptrdiff_t,
	need_NULL, need_offsetof.
	
	2002-06-28  Benjamin Kosnik  <bkoz@redhat.com>
	
	* include/c/std_cwchar.h: Guard. Add mbstate_t bits.
	* include/c/std_cwctype.h: Guard.
	
	* libsupc++/eh_alloc.cc: Tweak include order.
	* libsupc++/pure.cc: Use cstdio.
	* libsupc++/new_op.cc: Remove malloc forward declaration, as
	cstdlib brings it in. Use std::malloc.
	
	* src/Makefile.am (sources): Remove cmath.cc.
	* src/Makefile.in: Regenerate.
	* src/cmath.cc: Remove.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1057.2.150&r2=1.1057.2.151
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/Makefile.in.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.93.2.4&r2=1.93.2.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/acinclude.m4.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.194.2.13&r2=1.194.2.14
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/aclocal.m4.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.202.2.14&r2=1.202.2.15
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/configure.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.235.2.22&r2=1.235.2.23
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/configure.in.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.83.2.12&r2=1.83.2.13
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/configure.target.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.38.2.4&r2=1.38.2.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/Makefile.am.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.30.2.5&r2=1.30.2.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/Makefile.in.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.36.2.10&r2=1.36.2.11
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c/std_cerrno.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.12.2&r2=1.1.12.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c/std_cmath.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.12.2&r2=1.1.12.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c/std_csetjmp.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.12.2&r2=1.1.12.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c/std_cstdarg.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.12.2&r2=1.1.12.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c/std_cstddef.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.12.2&r2=1.1.12.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c/std_cstdio.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.12.2&r2=1.1.12.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c/std_cwchar.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.12.2&r2=1.1.12.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c/std_cwctype.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.12.2&r2=1.1.12.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/assert.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/ctype.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/errno.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/float.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/iso646.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/limits.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/locale.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/math.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/setjmp.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/signal.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/stdarg.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/stddef.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/stdio.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/stdlib.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/string.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/time.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/wchar.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_compatibility/wctype.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/c_std/std_cmath.h.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.2.8.3&r2=1.2.8.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/libio/Makefile.in.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.93.2.4&r2=1.93.2.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/libmath/Makefile.in.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.69.2.4&r2=1.69.2.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/libsupc++/Makefile.am.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.29.8.2&r2=1.29.8.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/libsupc++/Makefile.in.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.72.2.6&r2=1.72.2.7
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/libsupc++/eh_alloc.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.6&r2=1.6.18.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/libsupc++/new_op.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.4&r2=1.4.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/libsupc++/pure.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.8&r2=1.8.20.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/po/Makefile.in.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.13.2.4&r2=1.13.2.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/Makefile.am.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.103.2.3&r2=1.103.2.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/Makefile.in.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.144.2.5&r2=1.144.2.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/ext-inst.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.2.10.1&r2=1.2.10.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/cmath.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.4&r2=NONE
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/Makefile.in.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.20.2.4&r2=1.20.2.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/17_intro/header_cstdlib.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.4&r2=1.4.20.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/17_intro/header_cwchar.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.4&r2=1.4.16.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt_members_char_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.4.2.1&r2=1.4.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/codecvt_members_wchar_t_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.5.2.1&r2=1.5.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/collate_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.5.2.2&r2=1.5.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/collate_members_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.5.2.2&r2=1.5.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/ctype_is_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.2.1&r2=1.1.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/ctype_is_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.2.2&r2=1.1.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/ctype_to_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.2.1&r2=1.1.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/ctype_to_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.1.2.2&r2=1.1.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/messages_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.4.2.1&r2=1.4.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/money_get_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.14.2.2&r2=1.14.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/money_get_members_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.13.2.2&r2=1.13.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/money_put_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.12.2.3&r2=1.12.2.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/money_put_members_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.11.2.3&r2=1.11.2.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.6.2.1&r2=1.6.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/moneypunct_members_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.5.2.1&r2=1.5.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/num_get_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.7.4.6&r2=1.7.4.7
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/num_get_members_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.5.4.6&r2=1.5.4.7
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/num_put_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.6.4.2&r2=1.6.4.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/num_put_members_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.6.4.2&r2=1.6.4.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/numpunct_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.6.2.1&r2=1.6.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/numpunct_members_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.5.4.1&r2=1.5.4.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/time_get_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.7.2.1&r2=1.7.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/time_get_members_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.6.2.1&r2=1.6.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/time_put_members_char.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.7.2.1&r2=1.7.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/22_locale/time_put_members_wchar_t.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.6.2.1&r2=1.6.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/26_numerics/fabs_inline.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.2&r2=1.2.20.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/27_io/istream_extractor_arith.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.14&r2=1.14.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/27_io/istream_seeks.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_1-branch&r1=1.10.14.1&r2=1.10.14.2



More information about the Gcc-cvs mailing list