Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / execute / pr22429.c
blobaa55b6e88acc6fdbbf7520aaf39cbc402b9aa219
1 extern void abort (void);
3 #define N (1 << (sizeof(int) * __CHAR_BIT__ - 2))
5 int f(int n)
7 if (-N <= n && n <= N-1)
8 return 1;
9 return 0;
12 int main ()
14 if (f (N))
15 abort ();
16 return 0;