aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/and-or-constant2.c
blob: 82e0d3c69f4246bf0339bcf077a3fc9dc9f576fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int foo(int x)
{
	return (x | 0xfffffff0) & 0xfff;
}

/*
 * check-name: and-or-constant2
 * check-command: test-linearize -Wno-decl $file
 * check-known-to-fail
 *
 * check-output-ignore
 * check-output-contains: or\\..*\\$0xff0
 * check-output-excludes: or\\..*\\$0xfffffff0
 */