1#define N	1024
2
3_Bool check_ok(int i)
4{
5	return (i >= 0 && i < N) == (((unsigned int)i) < N);
6}
7
8/*
9 * check-name: range-check2
10 * check-command: test-linearize -Wno-decl $file
11 *
12 * check-output-ignore
13 * check-output-returns: 1
14 */
15