blob: fc12a96e4f9f7f5a431169a6af2aee8e4db9ce46 [file] [log] [blame]
Eli Benderskyaa3ffaf2013-04-08 18:33:51 +00001; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
2; CHECK: Cannot allocate unsized type
Chris Lattnerffe0da02008-03-01 09:01:57 +00003; PR2113
4
5define void @test() {
6 %A = alloca void()
7 ret void
8}
9