diff options
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/crash18.C | 14 |
2 files changed, 4 insertions, 14 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b3137c3c842..52389e6bdb3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-07-31 Andrew Pinski <pinskia@physics.uc.edu> + + * g++.old-deja/g++.other/crash18.C: Remove. + 2003-07-31 Nathan Sidwell <nathan@codesourcery.com> * g++.dg/template/explicit3.C: New. diff --git a/gcc/testsuite/g++.old-deja/g++.other/crash18.C b/gcc/testsuite/g++.old-deja/g++.other/crash18.C deleted file mode 100644 index 2b6f1662157..00000000000 --- a/gcc/testsuite/g++.old-deja/g++.other/crash18.C +++ /dev/null @@ -1,14 +0,0 @@ -// { dg-do assemble } -// { dg-options "-fvtable-gc -S" } -// Origin: Mark Mitchell <mitchell@codesourcery.com> - -struct S { - virtual void f (); -}; - -S* s; - -void g () -{ - s->f (); -} |