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

void device_function() {
}
// CHECK: define ptx_device void @device_function()

__kernel void kernel_function() {
  device_function();
}
// CHECK: define ptx_kernel void @kernel_function()
// CHECK: call ptx_device void @device_function()