aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-02 19:27:45 +0000
committerChris Lattner <sabre@nondot.org>2002-11-02 19:27:45 +0000
commit6a353ed5da89fffd5436576dc5ab6c081bf6aa97 (patch)
treea896815156cc64259413b9d952c82666b34adef2
parente9913f2cff02513af03731722954cf4d7c60f827 (diff)
Only test that uncond branch works
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4497 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Jello/test3.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Jello/test3.ll b/test/Jello/test3.ll
index 27c5f4179d..abbb7d30a9 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
}