Included test for r277360.

llvm-svn: 277361
This commit is contained in:
David Majnemer 2016-08-01 18:07:19 +00:00
parent 0e0bcfac37
commit dc77086fb5

7
test/Verifier/resume.ll Normal file
View File

@ -0,0 +1,7 @@
; 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.
}