Merge with gcc-4_3-branch up to revision 175516.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr38564.c
blobde365cc1f55c084ec53a5409be9d5c448bd29613
1 struct S
3 struct S *n, *p;
4 } *s;
6 void bar (void *);
8 int
9 foo (int x)
11 struct S p = { &p, &p };
12 int i;
13 for (i = 0; i < x; i++)
14 bar (s);
15 return p.n == &p;
18 int dialog_calendar(int state)
20 int *obj = (state == 1 ? &state : 0);
21 return (obj == &state);