blob: 8778a05291c526325ac86c1266d0a04943467e0a [file] [log] [blame]
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
target datalayout = "A1"
; CHECK: :7:50: error: address space must match datalayout
define void @use_alloca() {
%alloca_scalar_no_align = alloca i32, align 4, addrspace(2)
ret void
}