mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
10 lines
253 B
Common Lisp
10 lines
253 B
Common Lisp
// RUN: %clang_cc1 %s -triple nvptx-unknown-unknown -emit-llvm -o - | FileCheck %s
|
|
|
|
void device_function() {
|
|
}
|
|
// CHECK: define ptx_device void @device_function()
|
|
|
|
__kernel void kernel_function() {
|
|
}
|
|
// CHECK: define ptx_kernel void @kernel_function()
|
|
|