repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
Transforms
/
ADCE
/
2003-09-10-UnwindInstFail.ll
blob
444ca8ec904b9480d566eaaedf21f169f49ee6c8
1
; RUN: opt < %s -adce -disable-output
2
3
define void @test() {
4
br i1 false, label %then, label %endif
5
6
then: ; preds = %0
7
invoke void null( i8* null )
8
to label %invoke_cont unwind label %invoke_catch
9
10
invoke_catch: ; preds = %then
11
unwind
12
13
invoke_cont: ; preds = %then
14
ret void
15
16
endif: ; preds = %0
17
ret void
18
}
19