db/insert_manual_states.pl: remove debug output
[smatch.git] / validation / optim / mask1-setne0.c
blob1e599dc80332027cfb467a4eded00e3ebee997c0
1 struct s {
2 unsigned i:1;
3 };
5 int foo(struct s x)
7 unsigned int i = x.i;
9 if (i == 0)
10 return 1;
11 else if (i == 1)
12 return 1;
13 return 0;
17 * check-name: mask1-setne0
18 * check-command: test-linearize -Wno-decl $file
20 * check-output-start
21 foo:
22 .L0:
23 <entry-point>
24 ret.32 $1
27 * check-output-end