mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
03adaab74d
Fix the testcase to be valid IL and uses FileCheck. Thanks to NAKAMURA Takumi for noticing it. llvm-svn: 168427
17 lines
379 B
LLVM
17 lines
379 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
; PR2894
|
|
declare void @g()
|
|
define void @f() {
|
|
; CHECK: invoke void @g()
|
|
; CHECK: to label %d unwind label %c
|
|
invoke void @g() to label %d unwind label %c
|
|
d:
|
|
ret void
|
|
c:
|
|
%exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
|
|
cleanup
|
|
ret void
|
|
}
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|