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
/
recursivetest.ll
blob
724c7cf224c1f02ccc6953665a3ecb375b24c098
1
; RUN: opt < %s -prune-eh -S | not grep invoke
2
3
define internal i32 @foo() {
4
invoke i32 @foo( )
5
to label %Normal unwind label %Except ; <i32>:1 [#uses=0]
6
Normal: ; preds = %0
7
ret i32 12
8
Except: ; preds = %0
9
ret i32 123
10
}
11
12
define i32 @caller() {
13
invoke i32 @foo( )
14
to label %Normal unwind label %Except ; <i32>:1 [#uses=0]
15
Normal: ; preds = %0
16
ret i32 0
17
Except: ; preds = %0
18
ret i32 1
19
}
20