blob: 9102a88556d38b3e92688e6f4d544c12cf2dc69a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-gimple" } */
struct foo {
unsigned a1: 1;
unsigned a2: 3;
unsigned : 4;
};
extern struct foo thefoo;
void setup_foo(void)
{
const struct foo init = {
.a1 = 1,
.a2 = 5,
};
thefoo = init;
}
/* { dg-final { scan-tree-dump-times "thefoo.0 = \{\}" 1 "gimple"} } */
/* { dg-final { scan-tree-dump-times "thefoo.0.a1 = 1" 1 "gimple"} } */
/* { dg-final { scan-tree-dump-times "thefoo.0.a2 = 5" 1 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */
|