1 // REQUIRES: amdgpu-registered-target
3 // RUN: %clang_cc1 -triple amdgcn -fcuda-is-device -std=c++11 \
4 // RUN: -fgpu-allow-device-init -x hip \
5 // RUN: -fno-threadsafe-statics -emit-llvm -o - %s \
7 // RUN: %clang_cc1 -triple spirv64-amd-amdhsa -fcuda-is-device -std=c++11 \
8 // RUN: -fgpu-allow-device-init -x hip \
9 // RUN: -fno-threadsafe-statics -emit-llvm -o - %s \
10 // RUN: | FileCheck %s --check-prefix=CHECK-SPIRV
12 #include "Inputs/cuda.h"
14 // CHECK: define internal amdgpu_kernel void @_GLOBAL__sub_I_device_init_fun.cu() #[[ATTR:[0-9]*]]
15 // CHECK: attributes #[[ATTR]] = {{.*}}"device-init"
16 // CHECK-SPIRV: define internal spir_kernel void @_GLOBAL__sub_I_device_init_fun.cu(){{.*}} #[[ATTR:[0-9]*]]
17 // CHECK-SPIRV: attributes #[[ATTR]] = {{.*}}"device-init"
22 __device__ A() { f(); }