-march=arm -enable-thumb => -march=thumb
[oota-llvm.git] / test / CodeGen / ARM / long_shift.ll
1 ; RUN: llvm-as < %s | llc -march=arm &&
2 ; RUN: llvm-as < %s | llc -march=arm | grep rrx | wc -l | grep 1 &&
3 ; RUN: llvm-as < %s | llc -march=arm | grep __ashldi3 &&
4 ; RUN: llvm-as < %s | llc -march=arm | grep __ashrdi3 &&
5 ; RUN: llvm-as < %s | llc -march=arm | grep __lshrdi3 &&
6 ; RUN: llvm-as < %s | llc -march=thumb
7
8 define i64 @f0(i64 %A, i64 %B) {
9         %tmp = bitcast i64 %A to i64
10         %tmp2 = lshr i64 %B, 1
11         %tmp3 = sub i64 %tmp, %tmp2
12         ret i64 %tmp3
13 }
14
15 define i32 @f1(i64 %x, i64 %y) {
16         %a = shl i64 %x, %y
17         %b = trunc i64 %a to i32
18         ret i32 %b
19 }
20
21 define i32 @f2(i64 %x, i64 %y) {
22         %a = ashr i64 %x, %y
23         %b = trunc i64 %a to i32
24         ret i32 %b
25 }
26
27 define i32 @f3(i64 %x, i64 %y) {
28         %a = lshr i64 %x, %y
29         %b = trunc i64 %a to i32
30         ret i32 %b
31 }