Merge branch 'master' into msp430
[llvm/msp430.git] / test / CodeGen / ARM / insn-sched1.ll
blobf20344301e997936b1937b63604eef4dd812a549
1 ; RUN: llvm-as < %s | llc -march=arm -mattr=+v6
2 ; RUN: llvm-as < %s | llc -mtriple=arm-apple-darwin -mattr=+v6 |\
3 ; RUN:   grep mov | count 3
5 define i32 @test(i32 %x) {
6         %tmp = trunc i32 %x to i16              ; <i16> [#uses=1]
7         %tmp2 = tail call i32 @f( i32 1, i16 %tmp )             ; <i32> [#uses=1]
8         ret i32 %tmp2
11 declare i32 @f(i32, i16)