aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenOpenCL/ptx-calls.cl
blob: ae187173b1730c047a3a9a7c102edcb13930254f (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 %s -triple nvptx-unknown-unknown -emit-llvm -O0 -o - | FileCheck %s

void device_function() {
}
// CHECK-LABEL: define{{.*}} void @device_function()

__kernel void kernel_function() {
  device_function();
}
// CHECK-LABEL: define{{.*}} ptx_kernel void @kernel_function()
// CHECK: call void @device_function()