Eliminate more uses of llvm-as and llvm-dis.
[oota-llvm.git] / test / CodeGen / X86 / jump_sign.ll
1 ; RUN: llc < %s -march=x86 | grep jns
2
3 define i32 @f(i32 %X) {
4 entry:
5         %tmp1 = add i32 %X, 1           ; <i32> [#uses=1]
6         %tmp = icmp slt i32 %tmp1, 0            ; <i1> [#uses=1]
7         br i1 %tmp, label %cond_true, label %cond_next
8
9 cond_true:              ; preds = %entry
10         %tmp2 = tail call i32 (...)* @bar( )            ; <i32> [#uses=0]
11         br label %cond_next
12
13 cond_next:              ; preds = %cond_true, %entry
14         %tmp3 = tail call i32 (...)* @baz( )            ; <i32> [#uses=0]
15         ret i32 undef
16 }
17
18 declare i32 @bar(...)
19
20 declare i32 @baz(...)