Home | History | Annotate | Download | only in Assembler
      1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
      2 
      3 target datalayout = "A1"
      4 
      5 ; CHECK: Allocation instruction pointer not in the stack address space!
      6 ; CHECK-NEXT:  %alloca_scalar_no_align = alloca i32, addrspace(2)
      7 
      8 define void @use_alloca() {
      9   %alloca_scalar_no_align = alloca i32, addrspace(2)
     10   ret void
     11 }
     12