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

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