db/insert_manual_states.pl: remove debug output
[smatch.git] / validation / optim / sh-or-and1.c
blob7b79bbf32a7cbf75d3385204e20ee70878ee2e5b
1 unsigned lsr_or_and1(unsigned x, unsigned b)
3 return (((x & 0xfffff000) | b) >> 12);
6 unsigned shl_or_and1(unsigned x, unsigned b)
8 return (((x & 0x000fffff) | b) << 12);
12 * check-name: sh-or-and1
13 * check-command: test-linearize -Wno-decl $file
15 * check-output-ignore
16 * check-output-pattern(1): lsr\\.
17 * check-output-pattern(1): shl\\.
18 * check-output-pattern(2): or\\.
19 * check-output-excludes: and\\.