Polish atomic pointers
[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