summaryrefslogtreecommitdiff
path: root/clang/test/PCH/cuda-kernel-call.cu
blob: ef12c5920745c6d4e0bd4a296b27485276d9b53f (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: %clang_cc1 -emit-pch -o %t %s
// RUN: %clang_cc1 -include-pch %t -fsyntax-only %s 

#ifndef HEADER
#define HEADER
// Header.

#include "../SemaCUDA/cuda.h"

void kcall(void (*kp)()) {
  kp<<<1, 1>>>();
}

__global__ void kern() {
}

#else
// Using the header.

void test() {
  kcall(kern);
  kern<<<1, 1>>>();
}

#endif