aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/and-or-bf2.c
blob: cccaa85bc2e6586c8dd2347a4b2cca9f8eccf4b8 (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
25
26
27
28
struct s {
	char a:3;
	char b:3;
	char c:2;
};

void foo(struct s *p)
{
	p->a = 1;
	p->b = 2;
	p->c = 3;
}

/*
 * check-name: and-or-bf2
 * check-command: test-linearize -Wno-decl $file
 * check-known-to-fail
 *
 * check-output-start
foo:
.L0:
	<entry-point>
	store.8     $209 -> 0[%arg1]
	ret


 * check-output-end
 */