db/insert_manual_states.pl: remove debug output
[smatch.git] / validation / optim / bitfield-store-loadu.c
blob7fa1593d91314490c36811f6984bf723dffe069b
1 struct s {
2 unsigned int :2;
3 unsigned int f:3;
4 };
6 int foo(struct s s, int a)
8 s.f = a;
9 return s.f;
13 * check-name: bitfield-store-load unsigned
14 * check-command: test-linearize -Wno-decl $file
16 * check-output-ignore
17 * check-output-excludes: shl\\.
18 * check-output-excludes: lsr\\.
19 * check-output-excludes: or\\.
20 * check-output-pattern(1): and\\.