Fixed some bugs in register stack pass.
[llvm/zpu.git] / test / CodeGen / X86 / or-branch.ll
blob9ebf8901b77c067bba16142e140b8c6f5ab8d2d2
1 ; RUN: llc < %s -march=x86  | not grep set
3 define void @foo(i32 %X, i32 %Y, i32 %Z) nounwind {
4 entry:
5         %tmp = tail call i32 (...)* @bar( )             ; <i32> [#uses=0]
6         %tmp.upgrd.1 = icmp eq i32 %X, 0                ; <i1> [#uses=1]
7         %tmp3 = icmp slt i32 %Y, 5              ; <i1> [#uses=1]
8         %tmp4 = or i1 %tmp3, %tmp.upgrd.1               ; <i1> [#uses=1]
9         br i1 %tmp4, label %cond_true, label %UnifiedReturnBlock
11 cond_true:              ; preds = %entry
12         %tmp5 = tail call i32 (...)* @bar( )            ; <i32> [#uses=0]
13         ret void
15 UnifiedReturnBlock:             ; preds = %entry
16         ret void
19 declare i32 @bar(...)