OSDN Git Service

* gcc.dg/Warray-bounds.c: XFAIL test on 32-bit hppa targets.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr22335-1.c
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdelete-null-pointer-checks"  } */
3 int t(int *a)
4 {
5   int i;
6   *a = 1;
7   i = a == 0;
8   return i;
9 }
10