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.
26 lines
323 B
26 lines
323 B
4 months ago
|
// RUN: %clang_cc1 -emit-pch -o %t %s
|
||
|
// RUN: %clang_cc1 -include-pch %t -fsyntax-only %s
|
||
|
|
||
|
#ifndef HEADER
|
||
|
#define HEADER
|
||
|
// Header.
|
||
|
|
||
|
#include "Inputs/cuda.h"
|
||
|
|
||
|
void kcall(void (*kp)()) {
|
||
|
kp<<<1, 1>>>();
|
||
|
}
|
||
|
|
||
|
__global__ void kern() {
|
||
|
}
|
||
|
|
||
|
#else
|
||
|
// Using the header.
|
||
|
|
||
|
void test() {
|
||
|
kcall(kern);
|
||
|
kern<<<1, 1>>>();
|
||
|
}
|
||
|
|
||
|
#endif
|