blob: b0a3ee83ab84bb42394c4b8902771b4864040955 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-as < %s | llc -march=thumb
2; RUN: llvm-as < %s | llc -march=arm > %t
3; RUN: grep rrx %t | wc -l | grep 1
4; RUN: grep __ashldi3 %t
5; RUN: grep __ashrdi3 %t
6; RUN: grep __lshrdi3 %t
7
8define 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
15define 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
21define 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
27define i32 @f3(i64 %x, i64 %y) {
28 %a = lshr i64 %x, %y
29 %b = trunc i64 %a to i32
30 ret i32 %b
31}