OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.other/] [init5.C] - Diff between revs 149 and 154

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
// { dg-do run { xfail { ! cxa_atexit } } }
// { dg-do run { xfail { ! cxa_atexit } } }
// Objects must be destructed in decreasing cnt order
// Objects must be destructed in decreasing cnt order
// Original test attributed to James Kanze 
// Original test attributed to James Kanze 
extern "C" void abort ();
extern "C" void abort ();
static int cnt;
static int cnt;
class A {
class A {
  int myCnt;
  int myCnt;
public:
public:
  A() : myCnt(cnt++) {}
  A() : myCnt(cnt++) {}
  ~A() { if (--cnt != myCnt) abort(); }
  ~A() { if (--cnt != myCnt) abort(); }
};
};
void f() { static A a; /* a.myCnt == 1 */ }
void f() { static A a; /* a.myCnt == 1 */ }
class B {
class B {
  int myCnt;
  int myCnt;
public:
public:
  B() : myCnt(cnt+1) { f(); ++cnt; }
  B() : myCnt(cnt+1) { f(); ++cnt; }
  ~B() { if (--cnt != myCnt) abort(); }
  ~B() { if (--cnt != myCnt) abort(); }
};
};
static A a1; // a1.myCnt == 0
static A a1; // a1.myCnt == 0
static B b1; // b1.myCnt == 2
static B b1; // b1.myCnt == 2
static A a2; // a2.myCnt == 3
static A a2; // a2.myCnt == 3
int main() {}
int main() {}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.