aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/and-or-lsrx.c
blob: 31adca92e8fa2db23038a81de7f9cdc453458dee (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 & 0x0fff)) >> 12;
}

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