blob: 3d462b4d14618f7b87122a2077f18ed883c73397 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s -march=ppc32 | grep xor
Chris Lattner158cf5e2006-10-17 21:23:20 +00002
Tanya Lattner6f729d62008-03-25 04:26:08 +00003target datalayout = "E-p:32:32"
Chris Lattner158cf5e2006-10-17 21:23:20 +00004target triple = "powerpc-apple-darwin8.7.0"
5
Tanya Lattner6f729d62008-03-25 04:26:08 +00006define void @foo(i32 %X) {
Chris Lattner158cf5e2006-10-17 21:23:20 +00007entry:
Tanya Lattner6f729d62008-03-25 04:26:08 +00008 %tmp1 = and i32 %X, 3 ; <i32> [#uses=1]
9 %tmp2 = xor i32 %tmp1, 1 ; <i32> [#uses=1]
10 %tmp = icmp eq i32 %tmp2, 0 ; <i1> [#uses=1]
11 br i1 %tmp, label %UnifiedReturnBlock, label %cond_true
12cond_true: ; preds = %entry
13 tail call i32 (...)* @bar( ) ; <i32>:0 [#uses=0]
14 ret void
15UnifiedReturnBlock: ; preds = %entry
16 ret void
Chris Lattner158cf5e2006-10-17 21:23:20 +000017}
18
Tanya Lattner6f729d62008-03-25 04:26:08 +000019declare i32 @bar(...)
20