summaryrefslogtreecommitdiffstats
path: root/test/Verifier/2008-03-01-AllocaSized.ll
blob: 58f3098f9512569d1a9e6b232de74e2c778b8a96 (plain)
1
2
3
4
5
6
7
8
; RUN: not llvm-as %s -o /dev/null |& grep "Cannot allocate unsized type"
; PR2113

define void @test() {
	%A = alloca void()
	ret void
}