xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/n1.c (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)

foo(a,p)1 foo (a, p)
2      long long a;
3      int *p;
4 {
5   int b = (int)-a;
6   if (b > 32)
7     return 1;
8   else
9     return 0;
10 }
11