0195226bd5eb9119f625f1c057ee8ddc1ff17f3d
[oota-llvm.git] / test / CodeGen / X86 / shift-codegen.ll
1 ; RUN: llvm-as < %s | llc -relocation-model=static -march=x86 | grep 'shll $3' | wc -l | grep 2
2
3 ; This should produce two shll instructions, not any lea's.
4
5 target triple = "i686-apple-darwin8"
6 @Y = weak global i32 0          ; <i32*> [#uses=1]
7 @X = weak global i32 0          ; <i32*> [#uses=2]
8
9
10 define void @fn1() {
11 entry:
12         %tmp = load i32* @Y             ; <i32> [#uses=1]
13         %tmp1 = shl i32 %tmp, 3         ; <i32> [#uses=1]
14         %tmp2 = load i32* @X            ; <i32> [#uses=1]
15         %tmp3 = or i32 %tmp1, %tmp2             ; <i32> [#uses=1]
16         store i32 %tmp3, i32* @X
17         ret void
18 }
19
20 define i32 @fn2(i32 %X, i32 %Y) {
21 entry:
22         %tmp2 = shl i32 %Y, 3           ; <i32> [#uses=1]
23         %tmp4 = or i32 %tmp2, %X                ; <i32> [#uses=1]
24         ret i32 %tmp4
25 }
26