mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 08:31:28 -04:00
14 lines
378 B
Common Lisp
14 lines
378 B
Common Lisp
// 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 void @kernel_function()
|
|
// CHECK: call void @device_function()
|
|
// CHECK: !{{[0-9]+}} = !{void ()* @kernel_function, !"kernel", i32 1}
|
|
|