public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/12594] New: DRs 60 [TC] and 63 [TC] not implemented
@ 2003-10-13  9:53 peturr02 at ru dot is
  2003-10-13  9:55 ` [Bug libstdc++/12594] " peturr02 at ru dot is
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: peturr02 at ru dot is @ 2003-10-13  9:53 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12594

           Summary: DRs 60 [TC] and 63 [TC] not implemented
           Product: gcc
           Version: 3.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libstdc++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: peturr02 at ru dot is
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu

This patch somehow fell through the cracks:

http://gcc.gnu.org/ml/libstdc++/2003-09/msg00102.html

Note that this doesn't handle all of DR 60.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug libstdc++/12594] DRs 60 [TC] and 63 [TC] not implemented
  2003-10-13  9:53 [Bug libstdc++/12594] New: DRs 60 [TC] and 63 [TC] not implemented peturr02 at ru dot is
@ 2003-10-13  9:55 ` peturr02 at ru dot is
  2003-10-18 17:41 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: peturr02 at ru dot is @ 2003-10-13  9:55 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12594



------- Additional Comments From peturr02 at ru dot is  2003-10-13 09:55 -------
Created an attachment (id=4926)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=4926&action=view)
The patch

2003-09-23  Petur Runolfsson  <peturr02@ru.is>

	* include/bits/ostream.tcc
	(basic_ostream::operator<<(basic_ostream& (*)(basic_ostream&)),
	basic_ostream::operator<<(basic_ios& (*)(basic_ios&)),
	basic_ostream::operator<<(ios_base& (*)(ios_base&))):
	Implement the resolution of DR 60 (TC): These are not formatted
	output functions so don't construct sentry objects and don't
	catch exceptions.
	(basic_ostream::put, basic_ostream::write): Implement the
	resolution of DR 63 (TC) by catching exceptions and setting
	badbit.
	(basic_ostream::flush): Implement the resolution of DR 60 (TC):
	This is not an unformatted output function so don't construct
	a sentry object.
	* testsuite/testsuite_io.h (sync_streambuf): Define.
	* testsuite/27_io/basic_ostream/flush/char/2.cc: New test.
	* testsuite/27_io/basic_ostream/inserters_other/char/5.cc: New test.
	* testsuite/27_io/basic_ostream/put/char/1.cc: New test.
	* testsuite/27_io/basic_ostream/write/char/1.cc: New test.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug libstdc++/12594] DRs 60 [TC] and 63 [TC] not implemented
  2003-10-13  9:53 [Bug libstdc++/12594] New: DRs 60 [TC] and 63 [TC] not implemented peturr02 at ru dot is
  2003-10-13  9:55 ` [Bug libstdc++/12594] " peturr02 at ru dot is
@ 2003-10-18 17:41 ` pinskia at gcc dot gnu dot org
  2003-11-13 17:22 ` bkoz at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-18 17:41 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12594


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2003-10-18 17:35:53
               date|                            |


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug libstdc++/12594] DRs 60 [TC] and 63 [TC] not implemented
  2003-10-13  9:53 [Bug libstdc++/12594] New: DRs 60 [TC] and 63 [TC] not implemented peturr02 at ru dot is
  2003-10-13  9:55 ` [Bug libstdc++/12594] " peturr02 at ru dot is
  2003-10-18 17:41 ` pinskia at gcc dot gnu dot org
@ 2003-11-13 17:22 ` bkoz at gcc dot gnu dot org
  2003-11-13 17:43 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2003-11-13 17:22 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bkoz at gcc dot gnu dot org  2003-11-13 17:22 -------

Sorry about this.... in.

-benjamin

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12594


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug libstdc++/12594] DRs 60 [TC] and 63 [TC] not implemented
  2003-10-13  9:53 [Bug libstdc++/12594] New: DRs 60 [TC] and 63 [TC] not implemented peturr02 at ru dot is
                   ` (2 preceding siblings ...)
  2003-11-13 17:22 ` bkoz at gcc dot gnu dot org
@ 2003-11-13 17:43 ` cvs-commit at gcc dot gnu dot org
  2003-11-13 17:54 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-11-13 17:43 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-11-13 17:43 -------
Subject: Bug 12594

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	bkoz@gcc.gnu.org	2003-11-13 17:43:48

Modified files:
	libstdc++-v3   : ChangeLog 
	libstdc++-v3/include/bits: ostream.tcc 
	libstdc++-v3/testsuite: testsuite_io.h 
Added files:
	libstdc++-v3/testsuite/27_io/basic_ostream/flush/char: 2.cc 
	libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/char: 
	                                                                 5.cc 
	libstdc++-v3/testsuite/27_io/basic_ostream/put/char: 1.cc 
	libstdc++-v3/testsuite/27_io/basic_ostream/write/char: 1.cc 

Log message:
	2003-11-13  Petur Runolfsson  <peturr02@ru.is>
	
	PR libstdc++/12594
	* include/bits/ostream.tcc
	(basic_ostream::operator<<(basic_ostream& (*)(basic_ostream&)),
	basic_ostream::operator<<(basic_ios& (*)(basic_ios&)),
	basic_ostream::operator<<(ios_base& (*)(ios_base&))):
	Implement the resolution of DR 60 (TC): These are not formatted
	output functions so don't construct sentry objects and don't
	catch exceptions.
	(basic_ostream::put, basic_ostream::write): Implement the
	resolution of DR 63 (TC) by catching exceptions and setting
	badbit.
	(basic_ostream::flush): Implement the resolution of DR 60 (TC):
	This is not an unformatted output function so don't construct
	a sentry object.
	* testsuite/testsuite_io.h (sync_streambuf): Define.
	* testsuite/27_io/basic_ostream/flush/char/2.cc: New test.
	* testsuite/27_io/basic_ostream/inserters_other/char/5.cc: New test.
	* testsuite/27_io/basic_ostream/put/char/1.cc: New test.
	* testsuite/27_io/basic_ostream/write/char/1.cc: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&r1=1.2081&r2=1.2082
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/ostream.tcc.diff?cvsroot=gcc&r1=1.46&r2=1.47
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/testsuite_io.h.diff?cvsroot=gcc&r1=1.3&r2=1.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/flush/char/2.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/char/5.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/put/char/1.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/write/char/1.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12594


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug libstdc++/12594] DRs 60 [TC] and 63 [TC] not implemented
  2003-10-13  9:53 [Bug libstdc++/12594] New: DRs 60 [TC] and 63 [TC] not implemented peturr02 at ru dot is
                   ` (3 preceding siblings ...)
  2003-11-13 17:43 ` cvs-commit at gcc dot gnu dot org
@ 2003-11-13 17:54 ` pinskia at gcc dot gnu dot org
  2003-11-26 19:54 ` cvs-commit at gcc dot gnu dot org
  2004-01-29  2:56 ` pcarlini at suse dot de
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-11-13 17:54 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-11-13 17:54 -------
Fixed for 3.4.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |3.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12594


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug libstdc++/12594] DRs 60 [TC] and 63 [TC] not implemented
  2003-10-13  9:53 [Bug libstdc++/12594] New: DRs 60 [TC] and 63 [TC] not implemented peturr02 at ru dot is
                   ` (4 preceding siblings ...)
  2003-11-13 17:54 ` pinskia at gcc dot gnu dot org
@ 2003-11-26 19:54 ` cvs-commit at gcc dot gnu dot org
  2004-01-29  2:56 ` pcarlini at suse dot de
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-11-26 19:54 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-11-26 19:54 -------
Subject: Bug 12594

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	bkoz@gcc.gnu.org	2003-11-26 19:54:41

Modified files:
	libstdc++-v3   : ChangeLog 
	libstdc++-v3/include/bits: ostream.tcc 

Log message:
	2003-11-26  Petur Runolfsson  <peturr02@ru.is>
	
	PR libstdc++/12594
	* include/bits/ostream.tcc
	(basic_ostream::operator<<(basic_ostream& (*)(basic_ostream&)),
	basic_ostream::operator<<(basic_ios& (*)(basic_ios&)),
	basic_ostream::operator<<(ios_base& (*)(ios_base&))):
	Implement the resolution of DR 60 (TC): These are not formatted
	output functions so don't construct sentry objects and don't
	catch exceptions.
	(basic_ostream::put, basic_ostream::write): Implement the
	resolution of DR 63 (TC) by catching exceptions and setting
	badbit.
	(basic_ostream::flush): Implement the resolution of DR 60 (TC):
	This is not an unformatted output function so don't construct
	a sentry object.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.1464.2.154&r2=1.1464.2.155
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/ostream.tcc.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.31.14.6&r2=1.31.14.7



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12594


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug libstdc++/12594] DRs 60 [TC] and 63 [TC] not implemented
  2003-10-13  9:53 [Bug libstdc++/12594] New: DRs 60 [TC] and 63 [TC] not implemented peturr02 at ru dot is
                   ` (5 preceding siblings ...)
  2003-11-26 19:54 ` cvs-commit at gcc dot gnu dot org
@ 2004-01-29  2:56 ` pcarlini at suse dot de
  6 siblings, 0 replies; 8+ messages in thread
From: pcarlini at suse dot de @ 2004-01-29  2:56 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4.0                       |3.3.3


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12594


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2004-01-29  2:56 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-13  9:53 [Bug libstdc++/12594] New: DRs 60 [TC] and 63 [TC] not implemented peturr02 at ru dot is
2003-10-13  9:55 ` [Bug libstdc++/12594] " peturr02 at ru dot is
2003-10-18 17:41 ` pinskia at gcc dot gnu dot org
2003-11-13 17:22 ` bkoz at gcc dot gnu dot org
2003-11-13 17:43 ` cvs-commit at gcc dot gnu dot org
2003-11-13 17:54 ` pinskia at gcc dot gnu dot org
2003-11-26 19:54 ` cvs-commit at gcc dot gnu dot org
2004-01-29  2:56 ` pcarlini at suse dot de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).