repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Land the long talked about "type system rewrite" patch. This
[llvm/stm8.git]
/
test
/
Transforms
/
PruneEH
/
2003-11-21-PHIUpdate.ll
blob
a01070308bed362b2c76f37070daa79960c8abac
1
; RUN: opt < %s -prune-eh -disable-output
2
3
define internal void @callee() {
4
ret void
5
}
6
7
define i32 @caller() {
8
; <label>:0
9
invoke void @callee( )
10
to label %E unwind label %E
11
E: ; preds = %0, %0
12
%X = phi i32 [ 0, %0 ], [ 0, %0 ] ; <i32> [#uses=1]
13
ret i32 %X
14
}
15