mangle11.C was duplicate of mangle3.C
authorJakub Jelinek <jakub@gcc.gnu.org>
Wed, 20 Mar 2002 18:03:21 +0000 (19:03 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 20 Mar 2002 18:03:21 +0000 (19:03 +0100)
From-SVN: r51077

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.other/mangle11.C [deleted file]

index 84baf8057120923e564a74e3e6fca0b763382a9e..9fd78e0bb52789deae9ff35e5d6f18a526f3e81b 100644 (file)
@@ -668,7 +668,6 @@ Thu Mar  7 10:05:31 2002  Jeffrey A Law  (law@redhat.com)
        * g++.old-deja/g++.other/inline23.C: New test.
        * g++.old-deja/g++.eh/ia64-1.C: New test.
        * g++.old-deja/g++.other/dwarf2-1.C: New test.
-       * g++.old-deja/g++.other/mangle11.C: New test.
        * g++.old-deja/g++.other/reload1.C: New test.
        * g++.old-deja/g++.other/static20.C: New test.
        * g++.old-deja/g++.other/local-alloc1.C: New test.
diff --git a/gcc/testsuite/g++.old-deja/g++.other/mangle11.C b/gcc/testsuite/g++.old-deja/g++.other/mangle11.C
deleted file mode 100644 (file)
index d77a4b5..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-struct foo {
-  static int bar ()
-  {
-    int i;
-    static int baz = 1;
-    {
-      static int baz = 2;
-      i = baz++;
-    }
-    {
-      struct baz {
-        static int m ()
-        {
-          static int n;
-          return n += 10;
-        }
-      };
-      baz a;
-      i += a.m ();
-    }
-    {
-      static int baz = 3;
-      i += baz;
-      baz += 30;
-    }
-    i += baz;
-    baz += 60;
-    return i;
-  }
-};
-
-int main ()
-{
-  foo x;
-
-  if (x.bar () != 16)
-    return 1;
-  if (x.bar() != 117)
-    return 1;
-  return 0;
-}