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

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