Revert r188449 as it turns out we're just missing the instructions that need the...
[oota-llvm.git] / test / Transforms / SimplifyCFG / noreturn-call.ll
1 ; RUN: opt < %s -simplifycfg -S | grep unreachable
2 ; PR1796
3
4 declare void @Finisher(i32) noreturn
5
6 define void @YYY(i32) {
7   tail call void @Finisher(i32 %0) noreturn
8   tail call void @Finisher(i32 %0) noreturn
9   ret void
10 }
11