aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/R600/store.ll
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-04-19 02:10:53 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-04-19 02:10:53 +0000
commit3abd23bac565cdb10fe6dc17e4ee0640462b5660 (patch)
treeaf6b21957c03401af45e850668c0a1578dddfe0e /test/CodeGen/R600/store.ll
parent9affd163611b90113406b8729cc591eaad4778fa (diff)
downloadexternal_llvm-3abd23bac565cdb10fe6dc17e4ee0640462b5660.zip
external_llvm-3abd23bac565cdb10fe6dc17e4ee0640462b5660.tar.gz
external_llvm-3abd23bac565cdb10fe6dc17e4ee0640462b5660.tar.bz2
R600: Reorganize lit tests and document how they should be organized
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179828 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/store.ll')
-rw-r--r--test/CodeGen/R600/store.ll6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/CodeGen/R600/store.ll b/test/CodeGen/R600/store.ll
index 4382bff..4d673f3 100644
--- a/test/CodeGen/R600/store.ll
+++ b/test/CodeGen/R600/store.ll
@@ -1,11 +1,13 @@
; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck --check-prefix=EG-CHECK %s
; RUN: llc < %s -march=r600 -mcpu=verde | FileCheck --check-prefix=SI-CHECK %s
-; CHECK: @store_float
+; floating-point store
+; EG-CHECK: @store_f32
; EG-CHECK: RAT_WRITE_CACHELESS_32_eg T{{[0-9]+\.X, T[0-9]+\.X}}, 1
+; SI-CHECK: @store_f32
; SI-CHECK: BUFFER_STORE_DWORD
-define void @store_float(float addrspace(1)* %out, float %in) {
+define void @store_f32(float addrspace(1)* %out, float %in) {
store float %in, float addrspace(1)* %out
ret void
}