This commit was manufactured by cvs2svn to create branch

'gcc-3_2-branch'.

From-SVN: r60113
This commit is contained in:
No Author 2002-12-14 00:56:36 +00:00
parent bff5963509
commit c805b483e0
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
/* dg-do compile */
/* dg-options "-O3" */
typedef struct x x;
extern void *baz(char *);
struct x { char * (*bar) (int); };
static x **foo() { return ((x**)baz(0)); }
int xyzzy()
{
baz((*foo())->bar(0));
return 3;
}