diff options
author | Jakub Jelinek <jakub@gcc.gnu.org> | 2002-03-20 19:03:21 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2002-03-20 19:03:21 +0100 |
commit | 7d7e539c5bbfdb631b7d7476e6ef14fbb09c50aa (patch) | |
tree | 981b7b9a879ba931a198b6656617fdfa134d034d | |
parent | ea122333e59738d50dd4cb07c1d2d4769f93ee58 (diff) | |
download | gcc-7d7e539c5bbfdb631b7d7476e6ef14fbb09c50aa.zip gcc-7d7e539c5bbfdb631b7d7476e6ef14fbb09c50aa.tar.gz gcc-7d7e539c5bbfdb631b7d7476e6ef14fbb09c50aa.tar.bz2 |
mangle11.C was duplicate of mangle3.C
From-SVN: r51077
-rw-r--r-- | gcc/testsuite/ChangeLog | 1 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/mangle11.C | 41 |
2 files changed, 0 insertions, 42 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 84baf80..9fd78e0 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 index d77a4b5..0000000 --- a/gcc/testsuite/g++.old-deja/g++.other/mangle11.C +++ /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; -} |