Remove useless rdar:// comment from switch_to_lookup_table.ll test.
[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