]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix test for LP64, move to gcc.c-torture/compile (per Kaveh Ghazi)
authorDale Johannesen <dalej@gcc.gnu.org>
Sat, 14 Dec 2002 00:56:36 +0000 (00:56 +0000)
committerDale Johannesen <dalej@gcc.gnu.org>
Sat, 14 Dec 2002 00:56:36 +0000 (00:56 +0000)
From-SVN: r60114

gcc/testsuite/gcc.dg/20021205-1.c [deleted file]

diff --git a/gcc/testsuite/gcc.dg/20021205-1.c b/gcc/testsuite/gcc.dg/20021205-1.c
deleted file mode 100644 (file)
index a187625..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-/* dg-do compile */
-/* dg-options "-O3" */
-typedef struct x x;
-struct x { char * (*bar) (int); };
-static x **foo() { return ((x**)baz()); }
-int xyzzy()
-{
-    baz((*foo())->bar(0));
-    return 3;
-}