blob: f0bb5ea40157e40e2ca0a51c1a10bcd70411ce0c [file] [log] [blame]
Tanya Lattner6f729d62008-03-25 04:26:08 +00001; RUN: llvm-as < %s | llc -march=ppc32 | not grep mfcr
Chris Lattner00ef5042006-10-27 21:52:39 +00002
Tanya Lattner6f729d62008-03-25 04:26:08 +00003define void @foo(i32 %X, i32 %Y, i32 %Z) {
Chris Lattner00ef5042006-10-27 21:52:39 +00004entry:
Tanya Lattner6f729d62008-03-25 04:26:08 +00005 %tmp = icmp eq i32 %X, 0 ; <i1> [#uses=1]
6 %tmp3 = icmp slt i32 %Y, 5 ; <i1> [#uses=1]
7 %tmp4 = and i1 %tmp3, %tmp ; <i1> [#uses=1]
8 br i1 %tmp4, label %cond_true, label %UnifiedReturnBlock
9cond_true: ; preds = %entry
10 %tmp5 = tail call i32 (...)* @bar( ) ; <i32> [#uses=0]
11 ret void
12UnifiedReturnBlock: ; preds = %entry
13 ret void
Chris Lattner00ef5042006-10-27 21:52:39 +000014}
15
Tanya Lattner6f729d62008-03-25 04:26:08 +000016declare i32 @bar(...)
17