blob: 4c6f8bad54436aac2d601de99af4933d78321f68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
; 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
}
|