mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-06 19:31:13 +00:00
4572ce85b0
llvm-svn: 33296
12 lines
210 B
Plaintext
12 lines
210 B
Plaintext
; RUN: llvm-upgrade < %s | llvm-as | 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
|
|
}
|