llvm-for-llvmta/tools/clang/test/CodeGenOpenCL/ptx-kernels.cl

12 lines
338 B
Common Lisp
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 %s -triple nvptx-unknown-unknown -emit-llvm -o - | FileCheck %s
void device_function() {
}
// CHECK-LABEL: define{{.*}} void @device_function()
__kernel void kernel_function() {
}
// CHECK-LABEL: define{{.*}} spir_kernel void @kernel_function()
// CHECK: !{{[0-9]+}} = !{void ()* @kernel_function, !"kernel", i32 1}