Commit 69db9b99 by Dale Johannesen

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

From-SVN: r60111
parent a58be199
/* 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()); }
static x **foo() { return ((x**)baz(0)); }
int xyzzy()
{
baz((*foo())->bar(0));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment