You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
327 B
18 lines
327 B
4 months ago
|
; RUN: llc < %s -march=sparc
|
||
|
|
||
|
; CHECK: call func
|
||
|
; CHECK: st %i0, [%sp+64]
|
||
|
; CHECK: unimp 8
|
||
|
|
||
|
%struct = type { i32, i32 }
|
||
|
|
||
|
define void @test() nounwind {
|
||
|
entry:
|
||
|
%tmp = alloca %struct, align 4
|
||
|
call void bitcast (void ()* @func to void (%struct*)*)
|
||
|
(%struct* nonnull sret(%struct) %tmp)
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
declare void @func()
|