You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// C++ for OpenCL specific logic.
|
|
void test(int *ptr) {
|
|
addrspace_cast<__global int*>(ptr);
|
|
}
|
|
|
|
// RUN: c-index-test -test-load-source all %s -cl-std=clc++ | FileCheck %s
|
|
// CHECK: cxx.cl:3:3: CXXAddrspaceCastExpr
|