Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
e33c95d39b4a315be12c79f710cb1550650cb457
/
.
/
llvm
/
test
/
Transforms
/
SCCP
/
2004-11-16-DeadInvoke.ll
blob: 5d2c78ef874c0a5f52ff9fcf750645418bdbfc21 [
file
] [
log
] [
blame
]
; RUN: opt < %s -sccp -disable-output
declare
i32
@foo
()
define
void
@caller
()
{
br
i1
true
,
label
%T
,
label
%F
F
:
; preds = %0
%X
=
invoke
i32
@foo
(
)
to
label
%T
unwind
label
%T
; <i32> [#uses=0]
T
:
; preds = %F, %F, %0
ret
void
}