aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/ifcvt-compare.ll
blob: 8af139a5ef6ed5abd2e858e089ec6749ce7d2ba5 (plain) (blame)
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
42
43
44
45
46
47
; RUN: llc -mtriple=thumbv7-unknown-linux %s -o - | FileCheck %s

declare void @x()

define void @f0(i32 %x) optsize {
  ; CHECK-LABEL: f0:
  ; CHECK: cbnz
  %p = icmp eq i32 %x, 0
  br i1 %p, label %t, label %f

t:
  call void @x()
  br label %f

f:
  ret void
}

define void @f1(i32 %x) optsize {
  ; CHECK-LABEL: f1:
  ; CHECK: cmp r0, #1
  ; CHECK: it eq
  %p = icmp eq i32 %x, 1
  br i1 %p, label %t, label %f

t:
  call void @x()
  br label %f

f:
  ret void
}

define void @f2(i32 %x) {
  ; CHECK-LABEL: f2:
  ; CHECK: cmp r0, #0
  ; CHECK: it eq
  %p = icmp eq i32 %x, 0
  br i1 %p, label %t, label %f

t:
  call void @x()
  br label %f

f:
  ret void
}