Merging r259342 (with s/p2align 4/align 16) because r258750 is not in 3.8.
[oota-llvm.git] / test / Assembler / alloca-invalid-type.ll
1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2
3 ; CHECK: invalid type for alloca
4
5 define void @test() {
6 entry:
7   alloca metadata !{null}
8   ret void
9 }