commit | 790f64bce8b7aaa80dbe3ab85d678a7ecf9aad57 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Dec 13 10:13:45 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Dec 13 10:13:45 2002 +0000 |
tree | e8b12eaa494c274d0065640153ecee6e3e7e37e8 | |
parent | 0907c16cbf72a9f138059bf0d6330a1c2284dfc4 [diff] |
Return success on success git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5006 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/ExecutionEngine/test-phi.ll b/test/ExecutionEngine/test-phi.ll index 785a41b..14b1b60 100644 --- a/test/ExecutionEngine/test-phi.ll +++ b/test/ExecutionEngine/test-phi.ll
@@ -11,11 +11,11 @@ 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