mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
d9a479e5a0
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235638 91177308-0d34-0410-b5e6-96231b3b80d8
48 lines
662 B
LLVM
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
|
|
}
|