blob: e0394327d91e92fcb6b1a9489d57129c76bb6f74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
struct {
int i;
struct {
int x[2];
} b;
} a;
int foo(void)
{
a.i = 1;
a.b.x[0] = 0;
a.b.x[1] = 1;
return a.i + a.b.x[0];
}
/* { dg-final { scan-tree-dump "return 1;" "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
|