aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/trunc-mask-zext.c
blob: 9b604174685815a38f8f11a5808303afb3054090 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
unsigned long long foo(unsigned long long x)
{
	return (((unsigned int) x) & 0x7ffU);
}

/*
 * check-name: trunc-mask-zext
 * check-command: test-linearize -Wno-decl $file
 *
 * check-output-ignore
 * check-output-excludes: trunc\\.
 * check-output-excludes: zext\\.
 */