diff options
Diffstat (limited to 'llvm/test/Assembler/datalayout-alloca-addrspace-mismatch-1.ll')
-rw-r--r-- | llvm/test/Assembler/datalayout-alloca-addrspace-mismatch-1.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/test/Assembler/datalayout-alloca-addrspace-mismatch-1.ll b/llvm/test/Assembler/datalayout-alloca-addrspace-mismatch-1.ll new file mode 100644 index 00000000000..8778a05291c --- /dev/null +++ b/llvm/test/Assembler/datalayout-alloca-addrspace-mismatch-1.ll @@ -0,0 +1,9 @@ +; 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 +} |