]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/opt/dtor1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / opt / dtor1.C
diff --git a/gcc/testsuite/g++.dg/opt/dtor1.C b/gcc/testsuite/g++.dg/opt/dtor1.C
deleted file mode 100644 (file)
index 0352676..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-// { dg-do run }
-// { dg-options "-O2" }
-
-int i;
-
-struct S {
-  S ();
-  S (const S&);
-  ~S ();
-};
-
-S::S () { ++i; }
-S::S (const S&) { ++i; }
-S::~S () { --i; }
-
-inline void f (S) {
-}
-
-int main () {
-  {
-    S s;
-    f (s);
-  }
-
-  return i;
-}
-