repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix file cache tunables documentation
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
nonnull-7.c
blob
d66a60985b0cf5c532d2a6b808f351f17ec7b78a
1
/* { dg-do compile { target nonpic } }
2
{ dg-options "-O2 -Wsuggest-attribute=returns_nonnull" } */
3
4
int
*
q
;
5
int
*
test
()
/* { dg-warning "candidate for attribute .returns_nonnull." } */
6
{
7
if
(!
q
)
8
__builtin_unreachable
();
9
return
q
;
10
}