mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
8 lines
159 B
LLVM
8 lines
159 B
LLVM
|
; RUN: llvm-as < %s | llvm-dis | not grep {void@}
|
||
|
; PR2894
|
||
|
declare void @g()
|
||
|
define void @f() {
|
||
|
invoke void @g() to label %c unwind label %c
|
||
|
c: ret void
|
||
|
}
|