aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AMDGPU/unknown-processor.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AMDGPU/unknown-processor.ll')
-rw-r--r--test/CodeGen/AMDGPU/unknown-processor.ll20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/CodeGen/AMDGPU/unknown-processor.ll b/test/CodeGen/AMDGPU/unknown-processor.ll
deleted file mode 100644
index e25f2235993f..000000000000
--- a/test/CodeGen/AMDGPU/unknown-processor.ll
+++ /dev/null
@@ -1,20 +0,0 @@
-; RUN: llc -march=amdgcn -mcpu=unknown -verify-machineinstrs < %s 2>&1 | FileCheck -check-prefix=ERROR -check-prefix=GCN %s
-; RUN: llc -march=r600 -mcpu=unknown -verify-machineinstrs < %s 2>&1 | FileCheck -check-prefix=ERROR -check-prefix=R600 %s
-
-; Should not crash when the processor is not recognized and the
-; wavefront size feature not set.
-
-; Should also not have fragments of r600 and gcn isa mixed.
-
-; ERROR: 'unknown' is not a recognized processor for this target (ignoring processor)
-
-; GCN-NOT: MOV
-; GCN: buffer_store_dword
-; GCN: ScratchSize: 8{{$}}
-
-; R600: MOV
-define amdgpu_kernel void @foo() {
- %alloca = alloca i32, align 4
- store volatile i32 0, i32* %alloca
- ret void
-}