summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/test-phi.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-13 10:13:45 +0000
committerChris Lattner <sabre@nondot.org>2002-12-13 10:13:45 +0000
commit790f64bce8b7aaa80dbe3ab85d678a7ecf9aad57 (patch)
treee8b12eaa494c274d0065640153ecee6e3e7e37e8 /test/ExecutionEngine/test-phi.ll
parent0907c16cbf72a9f138059bf0d6330a1c2284dfc4 (diff)
downloadllvm-790f64bce8b7aaa80dbe3ab85d678a7ecf9aad57.tar.gz
llvm-790f64bce8b7aaa80dbe3ab85d678a7ecf9aad57.tar.bz2
llvm-790f64bce8b7aaa80dbe3ab85d678a7ecf9aad57.tar.xz
Return success on success
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5006 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/test-phi.ll')
-rw-r--r--test/ExecutionEngine/test-phi.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ExecutionEngine/test-phi.ll b/test/ExecutionEngine/test-phi.ll
index 785a41b4f3..14b1b60ce3 100644
--- a/test/ExecutionEngine/test-phi.ll
+++ b/test/ExecutionEngine/test-phi.ll
@@ -11,11 +11,11 @@ Dead:
br label %T
}
-void %main() {
+int %main() {
br label %Test
Test:
%X = phi int [7, %0], [%Y, %Dead]
- ret void
+ ret int 0
Dead:
%Y = shr int 12, ubyte 4
br label %Test