aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler/MultipleReturnValueType.ll
blob: 5812632cf3e8ffae60cb48186fca2d9642520ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: llvm-as < %s
; RUN: verify-uselistorder %s

        %struct.S_102 = type { float, float }

declare %struct.S_102 @f_102() nounwind

@callthis = external global void ()*            ; <void ()**> [#uses=50]


define void @foo() {
        store void ()* bitcast (%struct.S_102 ()* @f_102 to void ()*), void ()** @callthis, align 8
        ret void
}