xref: /illumos-gate/usr/src/tools/smatch/src/validation/optim/shl-and0.c (revision f37b3cbb6f67aaea5eec1c335bdc7bf432867d64)
1 unsigned shl_and0(unsigned x)
2 {
3 	unsigned t = (x & 0xfff00000);
4 	return (t << 12) & t;
5 }
6 
7 /*
8  * check-name: shl-and0
9  * check-command: test-linearize -Wno-decl $file
10  *
11  * check-output-ignore
12  * check-output-contains: ret\\..*\\$0$
13  */
14