From: Chris Lattner Date: Sat, 2 Nov 2002 19:27:45 +0000 (+0000) Subject: Only test that uncond branch works X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6a353ed5da89fffd5436576dc5ab6c081bf6aa97;p=oota-llvm.git Only test that uncond branch works git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4497 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Jello/test3.ll b/test/Jello/test3.ll index 27c5f4179d1..abbb7d30a9a 100644 --- a/test/Jello/test3.ll +++ b/test/Jello/test3.ll @@ -1,6 +1,6 @@ ; test unconditional branch -int %main() { +void %main() { br label %Test Test: - ret int 0 + ret void }