blob: 6693a2b176d61b4f2c962ea729de8cfce2de8eee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Test that variable
int val;
may hold value of tyope "struct c" which has same size.
This is valid in GIMPLE memory model. */
struct a {int val;} a={1},a2;
struct b {struct a a;};
int val;
struct c {struct b b;} *cptr=(void *)&val;
int
main(void)
{
cptr->b.a=a;
val = 2;
a2=cptr->b.a;
if (a2.val == a.val)
__builtin_abort ();
}
|