commit | eda9c79bbf0c3956ab91f1aa81aaeab94c1bb992 | [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 | d0823f16df3c36328377ff8729eef52e1658f803 | |
parent | 62ccf91463251d23b3f6a4996b565caee06f9b3f [diff] [blame] |
Return success on success llvm-svn: 5006
diff --git a/llvm/test/Regression/Jello/test-phi.ll b/llvm/test/Regression/Jello/test-phi.ll index 785a41b..14b1b60 100644 --- a/llvm/test/Regression/Jello/test-phi.ll +++ b/llvm/test/Regression/Jello/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