public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/56009] New: Nested global destruction semantics not working (mingw)
@ 2013-01-16 19:58 daniel.kruegler at googlemail dot com
  2013-01-21 10:46 ` [Bug c++/56009] " daniel.kruegler at googlemail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: daniel.kruegler at googlemail dot com @ 2013-01-16 19:58 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 56009
           Summary: Nested global destruction semantics not working
                    (mingw)
    Classification: Unclassified
           Product: gcc
           Version: 4.7.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: daniel.kruegler@googlemail.com


The following program - compiled with flags

-Wall -pedantic-errors

produces an unexpected output:

//-----------------------------------
extern "C" int printf(const char *, ...);

class A {
  A(const A&);
  A& operator=(const A&);
  A() { printf("A()\n"); }
  ~A() { printf("~A()\n"); }

public:
  void use() {
    printf("A is here!\n");
  }

  static A& get_instance() {
    static A result;
    return result;
  }
};

void use_A(const char* message) {
  A& a = A::get_instance();
  printf("Using A %s\n", message);
  a.use();
}

struct B {
  ~B() { use_A("from ~B()"); }
} b;

int main() {}
//-----------------------------------

A()
Using A from ~B()
A is here!

Note the lack of the expected last line:

~A()

Some further characteristics:

1) The problem is observed on a mingw-64bit system (Windows 7). I have been
told that the problem doesn't occur on Linux(?) systems (Thanks to Jonathan
Wakely)

2) The kind of global destruction semantics doesn't matter: Instead of a local
static variables we can use corresponding series of nested atexit()
registrations.

3) The problem is not related to flushing: Replacement of above printf calls by
e.g. std::cout with an effective std::flush call doesn't change anything


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

end of thread, other threads:[~2024-04-09  2:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-16 19:58 [Bug c++/56009] New: Nested global destruction semantics not working (mingw) daniel.kruegler at googlemail dot com
2013-01-21 10:46 ` [Bug c++/56009] " daniel.kruegler at googlemail dot com
2013-01-21 11:03 ` [Bug target/56009] " paolo.carlini at oracle dot com
2024-04-09  2:35 ` pinskia at gcc dot gnu.org
2024-04-09  2:38 ` pinskia at gcc dot gnu.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).