]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/cleanup4.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / cleanup4.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/cleanup4.C b/gcc/testsuite/g++.old-deja/g++.other/cleanup4.C
deleted file mode 100644 (file)
index a98c5fe..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-// Build don't link:
-// Origin: Jakub Jelinek  <jakub@redhat.com>
-// Special g++ Options: -O2 -fno-exceptions
-
-class foo
-{
-public:
-  foo ();
-  ~foo ();
-};
-
-class bar
-{
-public:
-  bar ();
-  bar (const foo&);
-};
-
-int i;
-foo f ();
-
-inline bar x ()
-{
-  switch (i)
-    {
-    case 0: return bar (f ());
-    default: return bar ();
-    }
-}
-
-bar y ()
-{
-  return x ();
-}