Bug 6503

Summary: (Deque) Iterators are not typesafe
Product: gcc Reporter: Peter Schmid <schmid>
Component: libstdc++Assignee: Paolo Carlini <paolo.carlini>
Status: RESOLVED FIXED    
Severity: normal CC: gcc-bugs, jakub, pcarlini
Priority: P3    
Version: 3.1   
Target Milestone: ---   
Host: i686-pc-linux-gnu Target: i686-pc-linux-gnu
Build: i686-pc-linux-gnu Known to work:
Known to fail: Last reconfirmed:

Description Peter Schmid 2002-04-28 12:26:00 UTC
gcc 3.1 rejects the comparison of a deque iterator versus a const deque
iterator. There is no problem when the order of the iterators is
changed. This is a regression with respect to STLport.

Release:
3.1 20020427 (prerelease)

Environment:
System: Linux kiste 2.4.18 #8 Sat Mar 9 15:33:15 CET 2002 i686 unknown
Architecture: i686
SuSE 7.3
host: i686-pc-linux-gnu
build: i686-pc-linux-gnu
target: i686-pc-linux-gnu
configured with: ../gcc/configure --enable-shared --disable-nls --enable-threads=posix --enable-languages=c,c++,f77,objc

How-To-Repeat:
source code tb3.C

#include <deque>
int main()
{
  using namespace std;

  deque<int> d(2);	
  deque<int>::iterator i;		
  deque<int>::const_iterator ci;

  i = d.begin();		
  ci = d.begin();
	
  if (i == ci) {}
  if (ci == i) {}							       
}

g++ -v -W -Wall tb3.C 
Reading specs from /usr/local/lib/gcc-lib/i686-pc-linux-gnu/3.1/specs
Configured with: ../gcc/configure --enable-shared --disable-nls --enable-threads=posix --enable-languages=c,c++,f77,objc
Thread model: posix
gcc version 3.1 20020427 (prerelease)
 /usr/local/lib/gcc-lib/i686-pc-linux-gnu/3.1/cc1plus -v -D__GNUC__=3 -D__GNUC_MINOR__=1 -D__GNUC_PATCHLEVEL__=0 -D__ELF__ -Dunix -D__gnu_linux__ -Dlinux -D__ELF__ -D__unix__ -D__gnu_linux__ -D__linux__ -D__unix -D__linux -Asystem=posix -D__NO_INLINE__ -D__STDC_HOSTED__=1 -D_GNU_SOURCE -Acpu=i386 -Amachine=i386 -Di386 -D__i386 -D__i386__ -D__tune_i686__ -D__tune_pentiumpro__ tb3.C -D__GNUG__=3 -D__DEPRECATED -D__EXCEPTIONS -D__GXX_ABI_VERSION=100 -quiet -dumpbase tb3.C -W -Wall -version -o /tmp/cc520xTS.s
GNU CPP version 3.1 20020427 (prerelease) (cpplib) (i386 Linux/ELF)
GNU C++ version 3.1 20020427 (prerelease) (i686-pc-linux-gnu)
	compiled by GNU C version 3.1 20020427 (prerelease).
ignoring nonexistent directory "NONE/include"
ignoring nonexistent directory "/usr/local/i686-pc-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/include/g++-v3
 /usr/local/include/g++-v3/i686-pc-linux-gnu
 /usr/local/include/g++-v3/backward
 /usr/local/include
 /usr/local/lib/gcc-lib/i686-pc-linux-gnu/3.1/include
 /usr/include
End of search list.
tb3.C: In function `int main()':
tb3.C:13: no match for `std::_Deque_iterator<int, int&, int*>& == 
   std::_Deque_iterator<int, const int&, const int*>&' operator
/usr/local/include/g++-v3/bits/stl_deque.h:197: candidates are: bool 
   std::_Deque_iterator<_Tp, _Ref, _Ptr>::operator==(const 
   std::_Deque_iterator<_Tp, _Ref, _Ptr>&) const [with _Tp = int, _Ref = int&, 
   _Ptr = int*]
Comment 1 Paolo Carlini 2002-05-29 02:46:23 UTC
Responsible-Changed-From-To: unassigned->paolo
Responsible-Changed-Why: Working on it.
Comment 2 Paolo Carlini 2002-05-29 02:46:23 UTC
State-Changed-From-To: open->analyzed
State-Changed-Why: Confirmed. Patch applied to trunk:
    http://gcc.gnu.org/ml/gcc-patches/2002-05/msg01494.html
Comment 3 Paolo Carlini 2002-07-25 04:34:46 UTC
State-Changed-From-To: analyzed->closed
State-Changed-Why: Fixed for 3.2 and 3.3 together with the related 6604 and
    7186.
Comment 4 pcarlini 2002-07-25 13:38:13 UTC
From: Paolo Carlini <pcarlini@unitus.it>
To: gcc-gnats@gcc.gnu.org,  gcc-prs@gcc.gnu.org,  gcc-bugs@gcc.gnu.org, 
 paolo@gcc.gnu.org,  schmid@snake.iap.physik.tu-darmstadt.de
Cc:  
Subject: Re: libstdc++/6503: (Deque) Iterators are not typesafe
Date: Thu, 25 Jul 2002 13:38:13 +0200

 Of course I really meant 6642 not 6604.
 Sorry, Paolo.
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=6503 
 
 

Comment 5 Jakub Jelinek 2002-07-26 23:23:46 UTC
From: jakub@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: libstdc++/6503
Date: 26 Jul 2002 23:23:46 -0000

 CVSROOT:	/cvs/gcc
 Module name:	egcs
 Branch: 	gcc-3_2-branch
 Changes by:	jakub@gcc.gnu.org	2002-07-26 16:23:45
 
 Modified files:
 	gcc            : ChangeLog 
 	gcc/cp         : ChangeLog 
 	gcc/testsuite  : ChangeLog 
 	libstdc++-v3   : ChangeLog 
 	gcc/cp         : class.c mangle.c rtti.c decl2.c cp-tree.h 
 	gcc/config/i386: i386.c 
 	gcc/config/mips: mips.c 
 	gcc            : c-decl.c 
 	libstdc++-v3   : configure.in configure 
 	libstdc++-v3/config/locale/generic: monetary_members.cc 
 	libstdc++-v3/config/locale/gnu: monetary_members.cc 
 	libstdc++-v3/src: localename.cc locale.cc 
 	libstdc++-v3/testsuite/22_locale: ctor_copy_dtor.cc 
 	libstdc++-v3/testsuite/24_iterators: iterator.cc 
 	libstdc++-v3/testsuite/27_io: iostream.cc istream.cc ostream.cc 
 	                              ostringstream_members.cc 
 	                              streambuf.cc stringbuf.cc 
 	                              stringstream.cc 
 	                              stringstream_members.cc filebuf.cc 
 	                              istream_unformatted.cc 
 	libstdc++-v3/include/bits: stl_deque.h locale_facets.h 
 	                           stl_iterator.h basic_ios.tcc 
 	                           sstream.tcc streambuf.tcc istream.tcc 
 	libstdc++-v3/include/std: std_istream.h std_streambuf.h 
 	libstdc++-v3/libsupc++: new 
 Added files:
 	gcc/testsuite/g++.dg/abi: layout1.C layout2.C mangle8.C rtti1.C 
 	gcc/testsuite/gcc.c-torture/execute: memset-3.c 
 	gcc/testsuite/gcc.dg: gnu89-init-2.c 
 	libstdc++-v3/testsuite/18_support: new_delete_placement.cc 
 	libstdc++-v3/testsuite/23_containers: deque_operators.cc 
 	libstdc++-v3/testsuite/27_io: fstream.cc ifstream.cc ios.cc 
 	                              istringstream.cc ofstream.cc 
 	                              ostringstream.cc 
 	                              streambuf_members.cc 
 	                              stringbuf_members.cc 
 
 Log message:
 	gcc/ChangeLog
 	
 	2002-07-24  Frank van der Linden  <fvdl@wasabisystems.com>
 	
 	PR optimization/7291
 	* config/i386/i386.c (ix86_expand_clrstr): Fix bzero alignment
 	problem on x86_64.
 	
 	2002-05-16  Jason Merrill  <jason@redhat.com>
 	
 	* config/mips/mips.c (mips_output_external): Don't do sdata
 	optimization for a variable with DECL_COMDAT set.
 	
 	2002-01-03  Jakub Jelinek  <jakub@redhat.com>
 	
 	* c-decl.c (build_compound_literal): Set decl TREE_READONLY from TYPE.
 	
 	* c-decl.c (build_compound_literal): Defer compound literal decls
 	until until file end to emit them only if they are actually used.
 	
 	gcc/cp/ChangeLog
 	
 	2002-07-17  Scott Snyder <snyder@fnal.gov>
 	
 	PR c++/7320
 	* rtti.c (get_tinfo_decl): Set DECL_COMDAT.
 	
 	2002-07-05  Nathan Sidwell  <nathan@codesourcery.com>
 	
 	Repair damage on weak-impared targets caused by my previous patch.
 	* cp-tree.h (import_export_tinfo): Add parameter.
 	* decl2.c (import_export_tinfo): Add parameter, post adjust
 	DECL_COMDAT.
 	* rtti.c (emit_tinfo_decl): DECL_COMDAT is (nearly) always setup by
 	import_export_tinfo.
 	
 	2002-06-30  Nathan Sidwell  <nathan@codesourcery.com>
 	
 	* cp-tree.h (CPTI_TINFO_DECL_TYPE): Replace with ...
 	(CPTI_TYPE_INFO_PTR_TYPE): ... this.
 	(tinfo_decl_type): Replace with ...
 	(type_info_ptr_type): ... this.
 	(import_export_tinfo): Declare.
 	(tinfo_decl_p): Rename to ...
 	(unemitted_tinfo_decl_p): ... this.
 	* decl2.c (import_export_decl): Break out tinfo handling into ...
 	(import_export_tinfo): ... here. New function.
 	(finish_file): Adjust.
 	* rtti.c (TINFO_REAL_NAME): New macro.
 	(init_rtti_processing): Create the tinfo types.
 	(get_tinfo_decl_dynamic): Use type_info_ptr_type, get_tinfo_ptr.
 	(get_tinfo_decl): Adjust.
 	(get_tinfo_ptr): New function.
 	(get_type_id): Use it.
 	(tinfo_base_init): Create vtable decl here, if it doesn't exist.
 	(ptr_initializer): Use get_tinfo_ptr.
 	(ptm_initializer): Likewise.
 	(synthesize_tinfo_var): Break into ...
 	(get_pseudo_ti_init): ... this. Just create the initializer.
 	(get_pseudo_ti_desc): .. and this.
 	(create_real_tinfo_var): Remove.
 	(create_pseudo_type_info): Don't create the vtable decl here.
 	(get_vmi_pseudo_type_info): Remove.
 	(create_tinfo_types): Adjust.
 	(tinfo_decl_p): Rename to ...
 	(unemitted_tinfo_decl_p): ... here. Adjust.
 	(emit_tinfo_decl): Adjust. Create the initializer.
 	
 	2002-06-14  Jason Merrill  <jason@redhat.com>
 	
 	C++ ABI changes.
 	* class.c (build_base_field): Set DECL_PACKED.
 	(layout_class_type): Don't use tail padding of PODs.
 	* mangle.c (write_unqualified_name): Fix template conversion op
 	mangling.
 	
 	2002-05-18  Jason Merrill  <jason@redhat.com>
 	
 	PR c++/6611
 	* decl2.c (import_export_decl): If we clear
 	DECL_NOT_REALLY_EXTERN, make sure DECL_EXTERNAL is set.
 	
 	2002-05-14  Jason Merrill  <jason@redhat.com>
 	
 	* rtti.c (get_tinfo_decl): Don't call comdat_linkage.
 	Do set DECL_COMDAT.
 	(synthesize_tinfo_var): Take the public decl.
 	(create_real_tinfo_var): Likewise.  Check DECL_COMDAT.
 	(emit_tinfo_decl): Adjust.  Call import_export_decl.
 	* decl2.c (import_export_decl): Simplify tinfo decl handling.
 	
 	gcc/testsuite/ChangeLog
 	
 	2002-07-24  Roger Sayle  <roger@eyesopen.com>
 	
 	* gcc.c-torture/execute/memset-3.c: New testcase.
 	
 	2002-06-14  Jason Merrill  <jason@redhat.com>
 	
 	* g++.dg/abi/layout1.C: New test.
 	* g++.dg/abi/layout2.C: New test.
 	* g++.dg/abi/mangle8.C: New test.
 	
 	2002-05-14  Jason Merrill  <jason@redhat.com>
 	
 	* g++.dg/abi/rtti1.C: New test.
 	
 	2002-01-03  Jakub Jelinek  <jakub@redhat.com>
 	
 	* gcc.dg/gnu89-init-2.c: New test.
 	
 	libstdc++-v3/ChangeLog
 	
 	2002-07-26  Phil Edwards  <pme@gcc.gnu.org>
 	
 	* libsupc++/new (placement delete):  Remove unused paramater names.
 	
 	2002-07-25  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	PR libstdc++/7216
 	* include/std/std_istream.h (basic_iostream): Add typedefs for
 	char_type, int_type, pos_type, off_type, and traits_type.
 	* testsuite/27_io/iostream.cc (test01): Add typedef tests.
 	* testsuite/27_io/istream.cc: Same.
 	* testsuite/27_io/ostream.cc: Same.
 	* testsuite/27_io/filebuf.cc: Same.
 	* testsuite/27_io/stringbuf.cc: Replace content, move to...
 	* testsuite/27_io/stringbuf_members.cc: ...here.
 	* testsuite/27_io/streambuf.cc: Replace content, move to...
 	* testsuite/27_io/streambuf_members.cc: ...here.
 	* testsuite/27_io/stringstream.cc: Replace content, move to...
 	* testsuite/27_io/stringstream_members.cc: ...here.
 	* testsuite/27_io/ios.cc: New file.
 	* testsuite/27_io/fstream.cc: New file.
 	* testsuite/27_io/ifstream.cc: New file.
 	* testsuite/27_io/ofstream.cc: New file.
 	* testsuite/27_io/istringstream.cc: New file.
 	* testsuite/27_io/ostringstream.cc: New file.
 	
 	2002-07-25  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	PR libstdc++/7220
 	* include/bits/istream.tcc (istream::ignore): Don't extract on
 	zero.
 	* testsuite/27_io/istream_unformatted.cc (test10): Add.
 	
 	2002-07-24  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	PR libstdc++/7222
 	* src/locale.cc (locale::locale(const char*)): Use setlocale NULL.
 	* testsuite/22_locale/ctor_copy_dtor.cc (test02): New.
 	
 	2002-07-24  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	PR libstdc++/7286
 	* libsupc++/new: Add placement delete.
 	* testsuite/18_support/new_delete_placement.cc: New.
 	
 	2002-07-07  Paolo Carlini  <pcarlini@unitus.it>
 	
 	PR libstdc++/7186
 	* include/bits/stl_deque.h (_Deque_iterator::operator-):
 	Make non-member, as already happens for the comparison
 	operators in accord with DR179 (Ready).
 	* testsuite/23_containers/deque_operators.cc: Add test02.
 	
 	2002-07-04  Benjamin Kosnik  <bkoz@redhat.com>
 	Jack Reeves  <jackw_reeves@hotmail.com>
 	
 	* include/std/std_streambuf.h (basic_streambuf::_M_buf): Change to
 	size_t, from int_type.
 	(basic_streambuf::_M_buf_size_opt): Same.
 	(basic_streambuf::_S_pback_sizex): Same.
 	* include/bits/streambuf.tcc: Same.
 	* include/std/std_streambuf.h (basic_streambuf::snextc): Use
 	eq_int_type.
 	(basic_streambuf::uflow): Same.
 	* include/bits/sstream.tcc (basic_stringbuf::overflow): Use
 	to_char_type.
 	* include/bits/basic_ios.tcc (basic_ios::init): Use _CharT().
 	* include/bits/streambuf.tcc (basic_streambuf::xsgetn): Use
 	eq_int_type.
 	(basic_streambuf::xsputn): Same.
 	(__copy_streambufs): Same.
 	
 	2002-07-02  Paolo Carlini  <pcarlini@unitus.it>
 	
 	PR libstdc++/6642
 	* include/bits/stl_iterator.h
 	(__normal_iterator::operator-(const __normal_iterator&)):
 	Make non-member, as already happens for the comparison
 	operators in accord with DR179 (Ready).
 	* testsuite/24_iterators/iterator.cc: Add test from the PR.
 	
 	2002-07-02  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	PR libstdc++/6410
 	* include/bits/locale_facets.h (moneypunct::moneypunct): Add const
 	char* name parameter.
 	* config/locale/gnu/monetary_members.cc: Use it.
 	* config/locale/generic/monetary_members.cc: Same.
 	* src/localename.cc (_Impl::_Impl(const char*, size_t)): Use it.
 	
 	2002-07-01  Benjamin Kosnik  <bkoz@redhat.com>
 	
 	* configure.in (libtool_VERSION): Bump to 5:0:0.
 	* configure: Regenerate.
 	
 	2002-05-19  Paolo Carlini  <pcarlini@unitus.it>
 	
 	* testsuite/23_containers/deque_operators.cc (test01):
 	Fix minor typo in last commit.
 	
 	2002-05-18  Paolo Carlini  <pcarlini@unitus.it>
 	
 	PR libstdc++/6503
 	* include/bits/stl_deque.h (_Deque_iterator::operator==,
 	operator!=, operator<, operator>, operator>=, operator<=):
 	Make non-member functions, to allow comparing const and
 	non-const iterators in any order.
 	* testsuite/23_containers/deque_operators.cc: New testfile.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.13152.2.657&r2=1.13152.2.657.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.2685.2.114&r2=1.2685.2.114.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.1672.2.166&r2=1.1672.2.166.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.1057.2.159&r2=1.1057.2.159.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/cp/class.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.436.2.10&r2=1.436.2.10.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/cp/mangle.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.44.2.5&r2=1.44.2.5.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/cp/rtti.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.130&r2=1.130.6.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/cp/decl2.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.520.2.7&r2=1.520.2.7.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/cp/cp-tree.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.681.2.12&r2=1.681.2.12.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/config/i386/i386.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.368.2.19&r2=1.368.2.19.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/config/mips/mips.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.176.2.6&r2=1.176.2.6.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/testsuite/g++.dg/abi/layout1.C.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.6.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/testsuite/g++.dg/abi/layout2.C.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.6.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/testsuite/g++.dg/abi/mangle8.C.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.6.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/testsuite/g++.dg/abi/rtti1.C.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.2.8.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/testsuite/gcc.c-torture/execute/memset-3.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/testsuite/gcc.dg/gnu89-init-2.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/gcc/c-decl.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.300.2.10&r2=1.300.2.10.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/configure.in.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.83.2.14&r2=1.83.2.14.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/configure.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.235.2.24&r2=1.235.2.24.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/config/locale/generic/monetary_members.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.1.2.2&r2=1.1.2.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/config/locale/gnu/monetary_members.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.1.2.2&r2=1.1.2.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/src/localename.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.24.2.3&r2=1.24.2.3.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/src/locale.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.54.2.6&r2=1.54.2.6.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/18_support/new_delete_placement.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/22_locale/ctor_copy_dtor.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.13&r2=1.13.12.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/23_containers/deque_operators.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.3.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/24_iterators/iterator.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.5&r2=1.5.14.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/fstream.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/ifstream.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/ios.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/istringstream.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/ofstream.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/ostringstream.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/streambuf_members.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/stringbuf_members.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=NONE&r2=1.1.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/iostream.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.1&r2=1.1.24.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/istream.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.4&r2=1.4.12.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/ostream.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.4&r2=1.4.12.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/ostringstream_members.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.2&r2=1.2.20.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/streambuf.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.10.8.1&r2=1.10.8.1.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/stringbuf.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.7.2.1&r2=1.7.2.1.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/stringstream.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.8&r2=1.8.12.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/stringstream_members.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.2&r2=1.2.20.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/filebuf.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.18&r2=1.18.12.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/testsuite/27_io/istream_unformatted.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.15.14.2&r2=1.15.14.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/include/bits/stl_deque.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.17.8.2&r2=1.17.8.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/include/bits/locale_facets.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.41.2.2&r2=1.41.2.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/include/bits/stl_iterator.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.19.2.1&r2=1.19.2.1.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/include/bits/basic_ios.tcc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.11.2.3&r2=1.11.2.3.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/include/bits/sstream.tcc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.8.2.2&r2=1.8.2.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/include/bits/streambuf.tcc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.12.2.2&r2=1.12.2.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/include/bits/istream.tcc.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.24.2.6&r2=1.24.2.6.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/include/std/std_istream.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.3&r2=1.3.14.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/include/std/std_streambuf.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.5.2.2&r2=1.5.2.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/egcs/libstdc++-v3/libsupc++/new.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.9.2.2&r2=1.9.2.2.2.1