aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/lsr-and1.c
blob: 393679e3f0456beeb2c76a5c2e6824ff3b3ecec8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// If (t >> S) is simplified into (x >> S)
// then the whole expression will be 0.
// The test is only interesting if the sub-expression
// (x & M) is referenced more than once
// (because otherwise other simplifications apply).
unsigned lsr_and1(unsigned x)
{
	unsigned t = (x & 0xfffff000);
	return ((t >> 12) ^ (x >> 12)) & t;
}

/*
 * check-name: lsr-and1
 * check-command: test-linearize -Wno-decl $file
 *
 * check-output-ignore
 * check-output-contains: ret\\..*\\$0$
 */