aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-08-21 12:40:35 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-08-21 12:40:35 +0000
commit755fa0b4fd5f69b1a47747d0a3007082d2936dc1 (patch)
tree73975218992978f519716fffd9c07ab11457da27
parent6c28c006c732c46bef1f367edeeb992051307e2b (diff)
downloadexternal_llvm-755fa0b4fd5f69b1a47747d0a3007082d2936dc1.zip
external_llvm-755fa0b4fd5f69b1a47747d0a3007082d2936dc1.tar.gz
external_llvm-755fa0b4fd5f69b1a47747d0a3007082d2936dc1.tar.bz2
Expand EXTRACT_SUBVECTOR
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79621 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMISelLowering.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp
index 3ceedd7..c55b7b4 100644
--- a/lib/Target/ARM/ARMISelLowering.cpp
+++ b/lib/Target/ARM/ARMISelLowering.cpp
@@ -79,6 +79,7 @@ void ARMTargetLowering::addTypeForNEON(EVT VT, EVT PromotedLdStVT,
setOperationAction(ISD::VECTOR_SHUFFLE, VT.getSimpleVT(), Custom);
setOperationAction(ISD::SCALAR_TO_VECTOR, VT.getSimpleVT(), Custom);
setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Custom);
+ setOperationAction(ISD::EXTRACT_SUBVECTOR, VT.getSimpleVT(), Expand);
if (VT.isInteger()) {
setOperationAction(ISD::SHL, VT.getSimpleVT(), Custom);
setOperationAction(ISD::SRA, VT.getSimpleVT(), Custom);