Merge branch 'master' into msp430
[llvm/msp430.git] / test / CodeGen / CBackend / 2008-05-21-MRV-InlineAsm.ll
blob16bf23e4d88e5995f91a1a029f5e0d5fbb753364
1 ; RUN: llvm-as < %s | llc -march=c
3 declare {i32, i32} @foo()
5 define i32 @test() {
6   %A = call {i32, i32} @foo()
7   %B = getresult {i32, i32} %A, 0
8   %C = getresult {i32, i32} %A, 1
9   %D = add i32 %B, %C
10   ret i32 %D
13 define i32 @test2() {
14   %A = call {i32, i32} asm sideeffect "...", "={cx},={di},~{dirflag},~{fpsr},~{flags},~{memory}"()
15   %B = getresult {i32, i32} %A, 0
16   %C = getresult {i32, i32} %A, 1
17   %D = add i32 %B, %C
18   ret i32 %D