llvm/test/CodeGen/AArch64/tailcall_misched_graph.ll: s/REQUIRE/REQUIRES/
[oota-llvm.git] / test / CodeGen / PowerPC / and-branch.ll
1 ; RUN: llc < %s -march=ppc32 | not grep mfcr
2
3 define void @foo(i32 %X, i32 %Y, i32 %Z) {
4 entry:
5         %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
9 cond_true:              ; preds = %entry
10         %tmp5 = tail call i32 (...) @bar( )            ; <i32> [#uses=0]
11         ret void
12 UnifiedReturnBlock:             ; preds = %entry
13         ret void
14 }
15
16 declare i32 @bar(...)
17