summaryrefslogtreecommitdiff
path: root/test/CodeGen/NVPTX
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-07-26 13:18:16 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-07-26 13:18:16 +0000
commitc735c1c2aed2cbaeb61296f4269535b5d13d8b0a (patch)
tree7882359e4627974b53ac954fb9b7fa535278a4c2 /test/CodeGen/NVPTX
parent5a24ed951b7f5e553a7e4e1415da5be247db443e (diff)
downloadllvm-c735c1c2aed2cbaeb61296f4269535b5d13d8b0a.tar.gz
llvm-c735c1c2aed2cbaeb61296f4269535b5d13d8b0a.tar.bz2
llvm-c735c1c2aed2cbaeb61296f4269535b5d13d8b0a.tar.xz
Revert "Add a target legalize hook for SplitVectorOperand"
This reverts commit 187198. It broke the bots. The soft float test probably needs a -triple because of name differences. On the hard float test I am getting a "roundss $1, %xmm0, %xmm0", instead of "vroundss $1, %xmm0, %xmm0, %xmm0". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187201 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/NVPTX')
-rw-r--r--test/CodeGen/NVPTX/vector-stores.ll30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/CodeGen/NVPTX/vector-stores.ll b/test/CodeGen/NVPTX/vector-stores.ll
deleted file mode 100644
index 49418122da..0000000000
--- a/test/CodeGen/NVPTX/vector-stores.ll
+++ /dev/null
@@ -1,30 +0,0 @@
-; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
-
-; CHECK: .visible .func foo1
-; CHECK: st.v2.f32
-define void @foo1(<2 x float> %val, <2 x float>* %ptr) {
- store <2 x float> %val, <2 x float>* %ptr
- ret void
-}
-
-; CHECK: .visible .func foo2
-; CHECK: st.v4.f32
-define void @foo2(<4 x float> %val, <4 x float>* %ptr) {
- store <4 x float> %val, <4 x float>* %ptr
- ret void
-}
-
-; CHECK: .visible .func foo3
-; CHECK: st.v2.u32
-define void @foo3(<2 x i32> %val, <2 x i32>* %ptr) {
- store <2 x i32> %val, <2 x i32>* %ptr
- ret void
-}
-
-; CHECK: .visible .func foo4
-; CHECK: st.v4.u32
-define void @foo4(<4 x i32> %val, <4 x i32>* %ptr) {
- store <4 x i32> %val, <4 x i32>* %ptr
- ret void
-}
-