Merging r259342 (with s/p2align 4/align 16) because r258750 is not in 3.8.
[oota-llvm.git] / test / Verifier / 2008-03-01-AllocaSized.ll
1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
2 ; CHECK: invalid type for alloca
3 ; PR2113
4
5 define void @test() {
6         %A = alloca void()
7         ret void
8 }
9