PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr22335-1.c
bloba2a760bfc964d5c48d6255b993aae9e6651f00bf
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdelete-null-pointer-checks" } */
3 int t(int *a)
5 int i;
6 *a = 1;
7 i = a == 0;
8 return i;