aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AMDGPU/waitcnt-flat.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AMDGPU/waitcnt-flat.ll')
-rw-r--r--test/CodeGen/AMDGPU/waitcnt-flat.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/AMDGPU/waitcnt-flat.ll b/test/CodeGen/AMDGPU/waitcnt-flat.ll
deleted file mode 100644
index 5d86b12da95f..000000000000
--- a/test/CodeGen/AMDGPU/waitcnt-flat.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; RUN: llc < %s -mtriple=amdgcn--amdhsa -mcpu=kaveri | FileCheck --check-prefix=GCN %s
-; RUN: llc < %s -mtriple=amdgcn--amdhsa -mcpu=fiji -mattr=-flat-for-global | FileCheck --check-prefix=GCN %s
-
-; If flat_store_dword and flat_load_dword use different registers for the data
-; operand, this test is not broken. It just means it is no longer testing
-; for the original bug.
-
-; GCN: {{^}}test:
-; XGCN: flat_store_dword v[{{[0-9]+:[0-9]+}}], [[DATA:v[0-9]+]]
-; XGCN: s_waitcnt vmcnt(0) lgkmcnt(0)
-; XGCN: flat_load_dword [[DATA]], v[{{[0-9]+:[0-9]+}}]
-define amdgpu_kernel void @test(i32 addrspace(1)* %out, i32 %in) {
- store volatile i32 0, i32 addrspace(1)* %out
- %val = load volatile i32, i32 addrspace(1)* %out
- ret void
-}