diff options
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU/invalid-alloca.ll')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/invalid-alloca.ll | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/invalid-alloca.ll b/llvm/test/CodeGen/AMDGPU/invalid-alloca.ll new file mode 100644 index 00000000000..043ab46716b --- /dev/null +++ b/llvm/test/CodeGen/AMDGPU/invalid-alloca.ll @@ -0,0 +1,16 @@ +; RUN: not llvm-as -data-layout=A5 < %s 2>&1 | FileCheck -check-prefixes=COMMON,AS %s +; RUN: not llc -mtriple amdgcn-amd-amdhsa-amdgiz < %s 2>&1 | FileCheck -check-prefixes=COMMON,LLC %s +; RUN: llvm-as < %s | not llc -mtriple amdgcn-amd-amdhsa-amdgiz 2>&1 | FileCheck -check-prefixes=COMMON,LLC %s +; RUN: not opt -data-layout=A5 -S < %s 2>&1 | FileCheck -check-prefixes=COMMON,LLC %s +; RUN: llvm-as < %s | not opt -data-layout=A5 2>&1 | FileCheck -check-prefixes=COMMON,LLC %s + +; AS: assembly parsed, but does not verify as correct! +; COMMON: Allocation instruction pointer not in the stack address space! +; COMMON: %tmp = alloca i32 +; LLC: error: input module is broken! + +define amdgpu_kernel void @test() { + %tmp = alloca i32 + ret void +} + |