Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGenCUDA / amdgpu-alias-undef-symbols.cu
blobd2ee39230d5a14b9c9e33840ca3d28e4eb13396f
1 // REQUIRES: amdgpu-registered-target
3 // RUN: %clang -target x86_64-unknown-linux-gnu --offload-arch=gfx906 --cuda-device-only -nogpulib -nogpuinc -x hip -emit-llvm -S -o - %s \
4 // RUN:   -fgpu-rdc -O3 -mllvm -amdgpu-early-inline-all=true -mllvm -amdgpu-function-calls=false | \
5 // RUN:   FileCheck %s
7 #include "Inputs/cuda.h"
9 struct B {
11   // CHECK: @_ZN1BC1Ei = hidden unnamed_addr alias void (ptr, i32), ptr @_ZN1BC2Ei
12   __device__ B(int x);
15 __device__ B::B(int x) {