summaryrefslogtreecommitdiff
path: root/test/Jello/test4.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Jello/test4.ll')
-rw-r--r--test/Jello/test4.ll9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/Jello/test4.ll b/test/Jello/test4.ll
index a406184d80..11aacc10fb 100644
--- a/test/Jello/test4.ll
+++ b/test/Jello/test4.ll
@@ -1,7 +1,10 @@
; test phi node
-int %main() {
+void %main() {
br label %Test
Test:
- %X = phi int [7, %0]
- ret int %X
+ %X = phi int [7, %0], [%Y, %Dead]
+ ret void
+Dead:
+ %Y = shr int 12, ubyte 4
+ br label %Test
}