PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / nonnull-5.c
blobba52fe3dbce0b6e500105182d9389fc5cfd7d6bf
1 /* Reduced from https://sourceware.org/bugzilla/show_bug.cgi?id=20978 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -Wnonnull" } */
5 int
6 foo (const char *name)
8 if (name)
9 return 6;
10 return __builtin_strlen (name); /* { dg-warning "argument 1 null where non-null expected" } */