summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCUDA/device-stub.cu
blob: af73ea993f457880dfe02aba8f4df553a587a5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s

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

// Test that we build the correct number of calls to cudaSetupArgument followed
// by a call to cudaLaunch.

// CHECK: define{{.*}}kernelfunc
// CHECK: call{{.*}}cudaSetupArgument
// CHECK: call{{.*}}cudaSetupArgument
// CHECK: call{{.*}}cudaSetupArgument
// CHECK: call{{.*}}cudaLaunch
__global__ void kernelfunc(int i, int j, int k) {}