[llvm-objdump/MachoDump] Make code much more concise.
[oota-llvm.git] / test / Assembler / MultipleReturnValueType.ll
1 ; RUN: llvm-as < %s
2 ; RUN: verify-uselistorder %s
3
4         %struct.S_102 = type { float, float }
5
6 declare %struct.S_102 @f_102() nounwind
7
8 @callthis = external global void ()*            ; <void ()**> [#uses=50]
9
10
11 define void @foo() {
12         store void ()* bitcast (%struct.S_102 ()* @f_102 to void ()*), void ()** @callthis, align 8
13         ret void
14 }