[X86] Simplify check lines in tests. No functional change.
[oota-llvm.git] / test / ExecutionEngine / OrcJIT / test-branch.ll
1 ; RUN: %lli -use-orcmcjit %s > /dev/null
2
3 ; test unconditional branch
4 define i32 @main() {
5         br label %Test
6 Test:           ; preds = %Test, %0
7         %X = icmp eq i32 0, 4           ; <i1> [#uses=1]
8         br i1 %X, label %Test, label %Label
9 Label:          ; preds = %Test
10         ret i32 0
11 }
12