Fix test for LP64, move to gcc.c-torture/compile (per Kaveh Ghazi)

From-SVN: r60114
This commit is contained in:
Dale Johannesen 2002-12-14 00:56:36 +00:00
parent c805b483e0
commit b2e38e4428
1 changed files with 0 additions and 10 deletions

View File

@ -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;
}