blob: 69c01b9d36d52127a3d5fa8a55e02e5f164c4e69 [file] [log] [blame]
#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
*/