foo(unsigned int x,unsigned int y,unsigned int a)1*c85f09ccSJohn Levon unsigned int foo(unsigned int x, unsigned int y, unsigned int a)
2*c85f09ccSJohn Levon {
3*c85f09ccSJohn Levon 	return ((x & y) | (a & 0xfff00000)) << 12;
4*c85f09ccSJohn Levon }
5*c85f09ccSJohn Levon 
6*c85f09ccSJohn Levon /*
7*c85f09ccSJohn Levon  * check-name: and-or-shlx
8*c85f09ccSJohn Levon  * check-command: test-linearize -Wno-decl $file
9*c85f09ccSJohn Levon  *
10*c85f09ccSJohn Levon  * check-output-ignore
11*c85f09ccSJohn Levon  * check-output-pattern(1): and\\.
12*c85f09ccSJohn Levon  * check-output-excludes: or\\.
13*c85f09ccSJohn Levon  */
14