aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/R600/insert_vector_elt.ll
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2013-10-08 18:06:36 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2013-10-08 18:06:36 +0000
commit194d437f1181f464fc27900500a8773da4dec8b9 (patch)
tree994513f8b1d89f7c0c93ffb7b9bef8ddafbf2c98 /test/CodeGen/R600/insert_vector_elt.ll
parente3c2f07005aa2e4c935adb65f7f3e0176810fe68 (diff)
downloadexternal_llvm-194d437f1181f464fc27900500a8773da4dec8b9.zip
external_llvm-194d437f1181f464fc27900500a8773da4dec8b9.tar.gz
external_llvm-194d437f1181f464fc27900500a8773da4dec8b9.tar.bz2
Add some xfaild R600 tests.
These are bugs to fix later. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/insert_vector_elt.ll')
-rw-r--r--test/CodeGen/R600/insert_vector_elt.ll16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/CodeGen/R600/insert_vector_elt.ll b/test/CodeGen/R600/insert_vector_elt.ll
new file mode 100644
index 0000000..05aecce
--- /dev/null
+++ b/test/CodeGen/R600/insert_vector_elt.ll
@@ -0,0 +1,16 @@
+; XFAIL: *
+; RUN: llc < %s -march=r600 -mcpu=redwood -o %t
+
+define void @var_insert(<4 x i32> addrspace(1)* %out, <4 x i32> %x, i32 %val, i32 %idx) nounwind {
+entry:
+ %tmp3 = insertelement <4 x i32> %x, i32 %val, i32 %idx ; <<4 x i32>> [#uses=1]
+ store <4 x i32> %tmp3, <4 x i32> addrspace(1)* %out
+ ret void
+}
+
+define void @var_extract(i32 addrspace(1)* %out, <4 x i32> %x, i32 %idx) nounwind {
+entry:
+ %tmp3 = extractelement <4 x i32> %x, i32 %idx ; <<i32>> [#uses=1]
+ store i32 %tmp3, i32 addrspace(1)* %out
+ ret void
+}