summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/test-branch.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/ExecutionEngine/test-branch.ll')
-rw-r--r--test/ExecutionEngine/test-branch.ll15
1 files changed, 8 insertions, 7 deletions
diff --git a/test/ExecutionEngine/test-branch.ll b/test/ExecutionEngine/test-branch.ll
index 649319b88f..55b7ef1d80 100644
--- a/test/ExecutionEngine/test-branch.ll
+++ b/test/ExecutionEngine/test-branch.ll
@@ -1,12 +1,13 @@
-; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
+; RUN: llvm-as < %s -f -o %t.bc
; RUN: lli %t.bc > /dev/null
; test unconditional branch
-int %main() {
+define i32 @main() {
br label %Test
-Test:
- %X = seteq int 0, 4
- br bool %X, label %Test, label %Label
-Label:
- ret int 0
+Test: ; preds = %Test, %0
+ %X = icmp eq i32 0, 4 ; <i1> [#uses=1]
+ br i1 %X, label %Test, label %Label
+Label: ; preds = %Test
+ ret i32 0
}
+