Sign in
cobalt
/
cobalt
/
ac9ac065c5083565917b15e7a672a79599f2f00b
/
.
/
src
/
third_party
/
llvm-project
/
llvm
/
test
/
Transforms
/
SimplifyCFG
/
noreturn-call.ll
blob: b45477828374ee022bfb55c6e182114a80f0b384 [
file
] [
log
] [
blame
]
; RUN: opt < %s -simplifycfg -S | grep unreachable
; PR1796
declare
void
@Finisher
(
i32
)
noreturn
define
void
@YYY
(
i32
)
{
tail
call
void
@Finisher
(
i32
%0
)
noreturn
tail
call
void
@Finisher
(
i32
%0
)
noreturn
ret
void
}