From: Dale Johannesen Date: Sat, 14 Dec 2002 00:56:36 +0000 (+0000) Subject: Fix test for LP64, move to gcc.c-torture/compile (per Kaveh Ghazi) X-Git-Tag: releases/gcc-3.2.2~176 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2e38e4428014272f3721794fb09bdde2b8571d9;p=thirdparty%2Fgcc.git Fix test for LP64, move to gcc.c-torture/compile (per Kaveh Ghazi) From-SVN: r60114 --- diff --git a/gcc/testsuite/gcc.dg/20021205-1.c b/gcc/testsuite/gcc.dg/20021205-1.c deleted file mode 100644 index a1876257e2fc..000000000000 --- a/gcc/testsuite/gcc.dg/20021205-1.c +++ /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; -}