projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2df035b
)
Make phi test a bit more challenging
author
Chris Lattner
<sabre@nondot.org>
Sat, 2 Nov 2002 19:45:30 +0000
(19:45 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Sat, 2 Nov 2002 19:45:30 +0000
(19:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4499
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/Jello/test4.ll
patch
|
blob
|
history
diff --git
a/test/Jello/test4.ll
b/test/Jello/test4.ll
index a406184d805e8e3250bc90fab6441916a8baf89d..11aacc10fbf21d76baa9f5aae1b4eb9a10df7214 100644
(file)
--- 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
}