1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00
llvm-mirror/test/CodeGen/Thumb2/ifcvt-compare.ll
Peter Collingbourne e778bcdbc1 Thumb2: When optimizing for size, do not if-convert branches involving comparisons with zero.
This allows the constant island pass to lower these branches to cbn?z
instructions, resulting in a shorter instruction sequence.

Differential Revision: http://reviews.llvm.org/D9183

llvm-svn: 235638
2015-04-23 20:31:30 +00:00

48 lines
662 B
LLVM

; 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
}