blob: 4c6f8bad54436aac2d601de99af4933d78321f68 [file] [log] [blame]
; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | not grep invoke
implementation
internal void %foo() {
ret void ; does not throw
}
int %caller() {
invoke void %foo() to label %Normal except label %Except
Normal:
ret int 0
Except:
ret int 1
}