Add workaround for Cortex-M3 errata 602117 by replacing ldrd x, y, [x] with ldm or...
[oota-llvm.git] / test / Assembler / MultipleReturnValueType.ll
1 ; RUN: llvm-as < %s
2
3         %struct.S_102 = type { float, float }
4
5 declare %struct.S_102 @f_102() nounwind
6
7 @callthis = external global void ()*            ; <void ()**> [#uses=50]
8
9
10 define void @foo() {
11         store void ()* bitcast (%struct.S_102 ()* @f_102 to void ()*), void ()** @callthis, align 8
12         ret void
13 }