Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / Wnonnull-9.c
blob1c57eefd2aefc01d2508e8332a6b71bbb6bf2540
1 /* { dg-do compile } */
2 /* { dg-options "-Wall" } */
5 void
6 foo (int a[static 1])
8 if ((void*)0 == a) /* { dg-warning "argument" "compared to NULL" } */
9 return;
12 int
13 main ()
15 foo ((void*)0); /* { dg-warning "argument 1 null where non-null expected" } */