summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/thumb2-and2.ll
blob: c0501ab8ad37dcbc211f072a0cd7a75faa946252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s

; 171 = 0x000000ab
define i32 @f1(i32 %a) {
    %tmp = and i32 %a, 171
    ret i32 %tmp
}
; CHECK-LABEL: f1:
; CHECK: 	and	r0, r0, #171

; 1179666 = 0x00120012
define i32 @f2(i32 %a) {
    %tmp = and i32 %a, 1179666
    ret i32 %tmp
}
; CHECK-LABEL: f2:
; CHECK: 	and	r0, r0, #1179666

; 872428544 = 0x34003400
define i32 @f3(i32 %a) {
    %tmp = and i32 %a, 872428544
    ret i32 %tmp
}
; CHECK-LABEL: f3:
; CHECK: 	and	r0, r0, #872428544

; 1448498774 = 0x56565656
define i32 @f4(i32 %a) {
    %tmp = and i32 %a, 1448498774
    ret i32 %tmp
}
; CHECK-LABEL: f4:
; CHECK: bic r0, r0, #-1448498775

; 66846720 = 0x03fc0000
define i32 @f5(i32 %a) {
    %tmp = and i32 %a, 66846720
    ret i32 %tmp
}
; CHECK-LABEL: f5:
; CHECK: 	and	r0, r0, #66846720