public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/15764] New: no cleanup if temporary's dtor terminates with an exception
@ 2004-06-01 17:03 boris at kolpackov dot net
  2004-06-01 17:13 ` [Bug c++/15764] " pinskia at gcc dot gnu dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: boris at kolpackov dot net @ 2004-06-01 17:03 UTC (permalink / raw)
  To: gcc-bugs

$ cat >test.cxx

#include <cstdlib>

struct a
{
  ~a ()
  {
    throw 1;
  }
};

int 
f (a const& acr = a ())
{
  return 1;
}

struct b
{
  b (int)
  {
  }

  ~b ()
  {
    std::abort ();
  }
};

int
main ()
{
  try
  {
    b b_ (f ());    
  } 
  catch (...) {}
}

$ g++ -v
Reading specs from /home/boris/local/lib/gcc/x86_64-unknown-linux-gnu/3.4.0/specs
Configured with: /home/boris/gcc-3.4.0/configure --prefix=/home/boris/local
--enable-__cxa_atexit --enable-languages=c,c++ --enable-long-long
--with-system-zlib --enable-shared --disable-multilib
Thread model: posix
gcc version 3.4.0

$ g++ test.cxx
$ ./a.out

I tried it on Intel C++ 8.0 and Compaq C++ 6.5-040 and they both call b::~b.

-boris

-- 
           Summary: no cleanup if temporary's dtor terminates with an
                    exception
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: boris at kolpackov dot net
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: x86_64-unknown-linux-gnu
  GCC host triplet: x86_64-unknown-linux-gnu
GCC target triplet: x86_64-unknown-linux-gnu


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


^ permalink raw reply	[flat|nested] 12+ messages in thread
[parent not found: <bug-15764-5779@http.gcc.gnu.org/bugzilla/>]

end of thread, other threads:[~2007-10-03 18:26 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-01 17:03 [Bug c++/15764] New: no cleanup if temporary's dtor terminates with an exception boris at kolpackov dot net
2004-06-01 17:13 ` [Bug c++/15764] " pinskia at gcc dot gnu dot org
2004-06-01 17:45 ` bangerth at dealii dot org
2004-06-01 17:53 ` boris at kolpackov dot net
2004-06-01 18:15 ` bangerth at dealii dot org
2004-06-01 18:16 ` bangerth at dealii dot org
2004-06-01 18:18 ` boris at kolpackov dot net
2004-06-01 18:29 ` bangerth at dealii dot org
2004-10-15  2:20 ` pinskia at gcc dot gnu dot org
     [not found] <bug-15764-5779@http.gcc.gnu.org/bugzilla/>
2007-09-06  5:36 ` jason at gcc dot gnu dot org
2007-10-03 10:44 ` jason at gcc dot gnu dot org
2007-10-03 18:26 ` jason at gcc dot gnu dot org

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).