mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
20ddc63c0b
llvm-svn: 8515
12 lines
195 B
Plaintext
12 lines
195 B
Plaintext
; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | grep invoke
|
|
|
|
declare void %External()
|
|
|
|
implementation
|
|
|
|
void %foo() {
|
|
invoke void %External() to label %Cont except label %Cont
|
|
Cont:
|
|
ret void
|
|
}
|