Home
last modified time | relevance | path

Searched refs:noescapefuncptr (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/clang/test/Sema/
Dnoescape.c6 void (*noescapefuncptr)(__attribute__((noescape)) int *); variable
17noescapefuncptr = &escapefunc; // expected-warning {{incompatible function pointer types assigning… in test0()
18 noescapefuncptr = &noescapefunc; in test0()
21noescapefuncptr = c ? &escapefunc : &noescapefunc; // expected-warning {{incompatible function poi… in test0()