teak-llvm/clang/test/SemaOpenCL/func_ptr.cl
Pekka Jaaskelainen 8690a6860a OpenCL: fix for the restriction on pointers to functions.
Patch from Anastasia Stulova!

llvm-svn: 201788
2014-02-20 13:52:08 +00:00

17 lines
474 B
Common Lisp

// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
void foo(void*);
void bar()
{
// declaring a function pointer is an error
void (*fptr)(int); // expected-error{{pointers to functions are not allowed}}
// taking the address of a function is an error
foo((void*)foo); // expected-error{{taking address of function is not allowed}}
foo(&foo); // expected-error{{taking address of function is not allowed}}
// just calling a function is correct
foo(0);
}