alloca-invalid-type.ll 147 B

123456789
  1. ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
  2. ; CHECK: invalid type for alloca
  3. define void @test() {
  4. entry:
  5. alloca metadata !{null}
  6. ret void
  7. }