1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/test/Verifier/resume.ll
David Majnemer dc77086fb5 Included test for r277360.
llvm-svn: 277361
2016-08-01 18:07:19 +00:00

8 lines
184 B
LLVM

; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
define void @test1() {
entry:
resume { i8*, i32 } undef
; CHECK: ResumeInst needs to be in a function with a personality.
}