llvm-project/clang/test/CodeGenOpenCL/ptx-calls.cl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
390 B
Common Lisp
Raw Normal View History

// 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 spir_kernel void @kernel_function()
// CHECK: call void @device_function()
// CHECK: !{{[0-9]+}} = !{void ()* @kernel_function, !"kernel", i32 1}