blob: ecca8519af639f0566ccdf116e5ce85346b1f6ba [file] [log] [blame]
// RUN: %clang_cc1 %s -triple ptx32-unknown-unknown -fcuda-is-device -emit-llvm -o - | FileCheck %s
#include "../SemaCUDA/cuda.h"
// CHECK: define ptx_device{{.*}}device_function
__device__ void device_function() {}
// CHECK: define ptx_kernel{{.*}}global_function
__global__ void global_function() {
// CHECK: call ptx_device{{.*}}device_function
device_function();
}