YouCompleteMe/cpp/llvm/tools/clang/test/CodeGenOpenCL/ptx-calls.cl
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

13 lines
328 B
Common Lisp

// 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()