]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/dtor7.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / dtor7.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/dtor7.C b/gcc/testsuite/g++.old-deja/g++.other/dtor7.C
deleted file mode 100644 (file)
index f1148af..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-// Origin: Mark Mitchell <mitchell@codesourcery.com>
-// Special g++ Options: -O2
-
-int i;
-int j;
-
-struct A
-{
-  A ();
-  A (const A&);
-  ~A ();
-};
-
-A::A ()
-{
-  ++i;
-}
-
-A::A (const A&)
-{
-  ++i;
-}
-
-A::~A () 
-{
-  --i;
-}
-
-A f () 
-{
-  return A ();
-}
-
-void g (const A&)
-{
-}
-
-int main ()
-{
-  g (f ());
-  return i;
-}