This commit was manufactured by cvs2svn to create branch

'gcc-3_2-branch'.

From-SVN: r59876
This commit is contained in:
No Author 2002-12-06 00:58:46 +00:00
parent 367cf8c891
commit d8d94eee18
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
/* 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;
}