[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / SPARC / cast-sret-func.ll
blob192a5ef7567ecbd7b12a464e0c9e46ff421a7cea
1 ; RUN: llc < %s -march=sparc
3 ; CHECK: call func
4 ; CHECK: st %i0, [%sp+64]
5 ; CHECK: unimp 8
7 %struct = type { i32, i32 }
9 define void @test() nounwind {
10 entry:
11   %tmp = alloca %struct, align 4
12   call void bitcast (void ()* @func to void (%struct*)*)
13     (%struct* nonnull sret(%struct) %tmp)
14   ret void
17 declare void @func()