aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/and-or-shlx.c
blob: ec2a2ced46cf3cbadafb8701de873b8d6aafc219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
unsigned int foo(unsigned int x, unsigned int y, unsigned int a)
{
	return ((x & y) | (a & 0xfff00000)) << 12;
}

/*
 * check-name: and-or-shlx
 * check-command: test-linearize -Wno-decl $file
 *
 * check-output-ignore
 * check-output-pattern(1): and\\.
 * check-output-excludes: or\\.
 */