db/insert_manual_states.pl: remove debug output
[smatch.git] / validation / optim / and-or-mask.c
blob46803789551be7067e3cdeac42992d9362e2f1e4
1 int foo(int a, int b)
3 return ((a & 7) | (b & 3)) & 8;
6 /*
7 * check-name: and-or-mask
8 * check-command: test-linearize -Wno-decl $file
10 * check-output-start
11 foo:
12 .L0:
13 <entry-point>
14 ret.32 $0
17 * check-output-end