mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 04:46:08 +00:00
13 lines
319 B
Common Lisp
13 lines
319 B
Common Lisp
// REQUIRES: amdgpu-registered-target
|
|
// RUN: %clang_cc1 -triple amdgcn-unknown-unknown -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// CHECK: define{{.*}} amdgpu_kernel void @calling_conv_amdgpu_kernel()
|
|
kernel void calling_conv_amdgpu_kernel()
|
|
{
|
|
}
|
|
|
|
// CHECK: define{{.*}} void @calling_conv_none()
|
|
void calling_conv_none()
|
|
{
|
|
}
|