summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja
diff options
context:
space:
mode:
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-31 18:06:44 +0000
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-31 18:06:44 +0000
commitec44de78b2aed6354cc8ccb7f807df8064109cb1 (patch)
tree646d46337cac65568508ae620997fcb7e6671e3b /gcc/testsuite/g++.old-deja
parentee188316e3895bd308178c0e964a69afb2a45298 (diff)
downloadgcc-ec44de78b2aed6354cc8ccb7f807df8064109cb1.tar.gz
2003-07-31 Andrew Pinski <pinskia@physics.uc.edu>
* g++.old-deja/g++.other/crash18.C: Remove. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70007 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.old-deja')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/crash18.C14
1 files changed, 0 insertions, 14 deletions
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 ();
-}