aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/range-check2.c
blob: 69c01b9d36d52127a3d5fa8a55e02e5f164c4e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define N	1024

_Bool check_ok(int i)
{
	return (i >= 0 && i < N) == (((unsigned int)i) < N);
}

/*
 * check-name: range-check2
 * check-command: test-linearize -Wno-decl $file
 *
 * check-output-ignore
 * check-output-returns: 1
 */