Fix file cache tunables documentation
[official-gcc.git] / gcc / testsuite / gcc.dg / nonnull-7.c
blobd66a60985b0cf5c532d2a6b808f351f17ec7b78a
1 /* { dg-do compile { target nonpic } }
2 { dg-options "-O2 -Wsuggest-attribute=returns_nonnull" } */
4 int *q;
5 int *test() /* { dg-warning "candidate for attribute .returns_nonnull." } */
7 if (!q)
8 __builtin_unreachable ();
9 return q;