mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
13 lines
390 B
Common Lisp
13 lines
390 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 spir_kernel void @kernel_function()
|
|
// CHECK: call void @device_function()
|
|
// CHECK: !{{[0-9]+}} = !{void ()* @kernel_function, !"kernel", i32 1}
|
|
|