summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-10-10 15:15:17 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-10-10 15:15:17 +0000
commit812ddcc50f8bc3ec6ce115863ff2263815906aaf (patch)
tree09d78a3a26f09e84735e4195e566584f0996b91a /include/llvm/CodeGen
parentd622bef31d11a5a6429fe7fad557c9b111e96f69 (diff)
downloadllvm-812ddcc50f8bc3ec6ce115863ff2263815906aaf.tar.gz
llvm-812ddcc50f8bc3ec6ce115863ff2263815906aaf.tar.bz2
llvm-812ddcc50f8bc3ec6ce115863ff2263815906aaf.tar.xz
Revert "Implement AArch64 vector load/store multiple N-element structure class SIMD(lselem). Including following 14 instructions: 4 ld1 insts: load multiple 1-element structure to sequential 1/2/3/4 registers. ld2/ld3/ld4: load multiple N-element structure to sequential N registers (N=2,3,4). 4 st1 insts: store multiple 1-element structure from sequential 1/2/3/4 registers. st2/st3/st4: store multiple N-element structure from sequential N registers (N = 2,3,4)."
This reverts commit r192352. It broke the build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/ValueTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/ValueTypes.h b/include/llvm/CodeGen/ValueTypes.h
index 79f323341f..2e8f637f52 100644
--- a/include/llvm/CodeGen/ValueTypes.h
+++ b/include/llvm/CodeGen/ValueTypes.h
@@ -208,7 +208,7 @@ namespace llvm {
bool is64BitVector() const {
return (SimpleTy == MVT::v8i8 || SimpleTy == MVT::v4i16 ||
SimpleTy == MVT::v2i32 || SimpleTy == MVT::v1i64 ||
- SimpleTy == MVT::v1f64 || SimpleTy == MVT::v2f32);
+ SimpleTy == MVT::v2f32);
}
/// is128BitVector - Return true if this is a 128-bit vector type.