unwind: ignore component_match_add_release() paths
[smatch.git] / validation / linear / bitfield-expand-deref.c
blob43e1078d5fb19cb507d942ee84f108582ad21094
1 struct s {
2 int a:8;
3 int b:8;
4 };
6 int foo(void)
8 struct s x = { .a = 12, .b = 34, };
10 return x.b;
13 int bar(int a)
15 struct s x = { .a = 12, .b = a, };
17 return x.b;
21 * check-name: bitfield expand deref
22 * check-command: test-linearize -Wno-decl $file
24 * check-output-ignore
25 * check-output-excludes: ret\\..*\\$12
26 * check-output-contains: ret\\..*\\$34