aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/ifcvt6.ll
blob: 78901930e4b269bb51ba19a7d603274415ddae14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc < %s -mtriple=armv7-apple-ios | FileCheck %s

define void @foo(i32 %X, i32 %Y) {
entry:
; CHECK: cmpne
; CHECK: pophi
	%tmp1 = icmp ult i32 %X, 4		; <i1> [#uses=1]
	%tmp4 = icmp eq i32 %Y, 0		; <i1> [#uses=1]
	%tmp7 = or i1 %tmp4, %tmp1		; <i1> [#uses=1]
	br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock

cond_true:		; preds = %entry
	%tmp10 = call i32 (...) @bar( )		; <i32> [#uses=0]
	ret void

UnifiedReturnBlock:		; preds = %entry
	ret void
}

declare i32 @bar(...)