aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCUDA/device-init-fun.cu
blob: aaf5b1be72b842b49d8e267298cee8fd9e1fa1c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// REQUIRES: amdgpu-registered-target

// RUN: %clang_cc1 -triple amdgcn -fcuda-is-device -std=c++11 \
// RUN:     -fgpu-allow-device-init -x hip \
// RUN:     -fno-threadsafe-statics -emit-llvm -o - %s \
// RUN:     | FileCheck %s
// RUN: %clang_cc1 -triple spirv64-amd-amdhsa -fcuda-is-device -std=c++11 \
// RUN:     -fgpu-allow-device-init -x hip \
// RUN:     -fno-threadsafe-statics -emit-llvm -o - %s \
// RUN:     | FileCheck %s --check-prefix=CHECK-SPIRV

#include "Inputs/cuda.h"

// CHECK: define internal amdgpu_kernel void @_GLOBAL__sub_I_device_init_fun.cu() #[[ATTR:[0-9]*]]
// CHECK: attributes #[[ATTR]] = {{.*}}"device-init"
// CHECK-SPIRV: define internal spir_kernel void @_GLOBAL__sub_I_device_init_fun.cu(){{.*}} #[[ATTR:[0-9]*]]
// CHECK-SPIRV: attributes #[[ATTR]] = {{.*}}"device-init"

__device__ void f();

struct A {
  __device__ A() { f(); }
};

__device__ A a;