forked from OSchip/llvm-project
parent
a21f83f809
commit
356cbfef73
|
@ -0,0 +1,16 @@
|
|||
; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | not grep 'ret int'
|
||||
|
||||
void %noreturn() {
|
||||
unwind
|
||||
}
|
||||
|
||||
int %caller() {
|
||||
; noreturn never returns, so the ret is unreachable.
|
||||
call void %noreturn()
|
||||
ret int 17
|
||||
}
|
||||
|
||||
int %caller2() {
|
||||
%T = call int %caller()
|
||||
ret int %T ;; this is also unreachable!
|
||||
}
|
Loading…
Reference in New Issue