[llvm-branch-commits] [llvm-branch] r165523 - /llvm/branches/R600/test/CodeGen/R600/store.v4i32.ll

Tom Stellard thomas.stellard at amd.com
Tue Oct 9 11:49:00 PDT 2012


Author: tstellar
Date: Tue Oct  9 13:48:59 2012
New Revision: 165523

URL: http://llvm.org/viewvc/llvm-project?rev=165523&view=rev
Log:
R600: Add store v4i32 test

This was supposed to be committed with:
"R600: Add support for v4i32 global stores"

Added:
    llvm/branches/R600/test/CodeGen/R600/store.v4i32.ll

Added: llvm/branches/R600/test/CodeGen/R600/store.v4i32.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/R600/test/CodeGen/R600/store.v4i32.ll?rev=165523&view=auto
==============================================================================
--- llvm/branches/R600/test/CodeGen/R600/store.v4i32.ll (added)
+++ llvm/branches/R600/test/CodeGen/R600/store.v4i32.ll Tue Oct  9 13:48:59 2012
@@ -0,0 +1,9 @@
+;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
+
+;CHECK: RAT_WRITE_CACHELESS_128 T{{[0-9]+\.XYZW, T[0-9]+\.X}}, 1
+
+define void @test(<4 x i32> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
+  %1 = load <4 x i32> addrspace(1) * %in
+  store <4 x i32> %1, <4 x i32> addrspace(1)* %out
+  ret void
+}





More information about the llvm-branch-commits mailing list