mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
563ba88392
llvm-svn: 8558
21 lines
296 B
LLVM
21 lines
296 B
LLVM
; RUN: llvm-as < %s | opt -adce -disable-output
|
|
|
|
implementation ; Functions:
|
|
|
|
void %test() {
|
|
br bool false, label %then, label %endif
|
|
|
|
then:
|
|
invoke void null( sbyte* null )
|
|
to label %invoke_cont except label %invoke_catch
|
|
|
|
invoke_catch:
|
|
unwind
|
|
|
|
invoke_cont:
|
|
ret void
|
|
|
|
endif:
|
|
ret void
|
|
}
|