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.
27 lines
455 B
27 lines
455 B
#ifndef INCLUDED
|
|
#define INCLUDED
|
|
|
|
#pragma OPENCL EXTENSION all : begin
|
|
#pragma OPENCL EXTENSION all : end
|
|
|
|
#pragma OPENCL EXTENSION my_ext : begin
|
|
|
|
struct A {
|
|
int a;
|
|
};
|
|
|
|
typedef struct A TypedefOfA;
|
|
typedef const __private TypedefOfA* PointerOfA;
|
|
|
|
void f(void);
|
|
|
|
__attribute__((overloadable)) void g(long x);
|
|
|
|
#pragma OPENCL EXTENSION my_ext : end
|
|
#pragma OPENCL EXTENSION my_ext : end
|
|
|
|
__attribute__((overloadable)) void g(void);
|
|
|
|
#endif // INCLUDED
|
|
|