Files
clang-p2996/llvm/test/CodeGen/AMDGPU/propagate-attributes-bitcast-function.ll
Stanislav Mekhanoshin 3138278287 [AMDGPU] Propagate function attributes thru bitcasts
AMDGPUPropagateAttributes will not work on function bitcatsts,
so move AMDGPUFixFunctionBitcasts before it.

Differential Revision: https://reviews.llvm.org/D63455

llvm-svn: 363614
2019-06-17 20:42:48 +00:00

24 lines
620 B
LLVM

; RUN: llc -march=amdgcn -mcpu=gfx1010 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
; GCN: foo1:
; v_cndmask_b32_e64 v0, 0, 1, vcc_lo{{$}}
; GCN: kernel1:
; GCN: foo1@gotpcrel32@lo+4
; GCN: foo1@gotpcrel32@hi+4
define void @foo1(i32 %x) #1 {
entry:
%cc = icmp eq i32 %x, 0
store volatile i1 %cc, i1* undef
ret void
}
define amdgpu_kernel void @kernel1(float %x) #0 {
entry:
call void bitcast (void (i32)* @foo1 to void (float)*)(float %x)
ret void
}
attributes #0 = { nounwind "target-features"="+wavefrontsize32" }
attributes #1 = { noinline nounwind "target-features"="+wavefrontsize64" }