aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/trunc-mask-zext.c
blob: 30ae5aeebf5d58dcdc112878c958512e213d673e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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-known-to-fail
 *
 * check-output-ignore
 * check-output-excludes: trunc\\.
 * check-output-excludes: zext\\.
 */