diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-08-21 12:40:35 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-08-21 12:40:35 +0000 |
commit | e3046618dea57cf0db17a9f8e3b1322c0f133c8a (patch) | |
tree | 0829425c15fe4b0daa16a52f5dbc9938aa6874c2 /llvm/lib/Target | |
parent | 38f284f2ae134f61c2f2e982266b516d4e4212c1 (diff) | |
download | bcm5719-llvm-e3046618dea57cf0db17a9f8e3b1322c0f133c8a.tar.gz bcm5719-llvm-e3046618dea57cf0db17a9f8e3b1322c0f133c8a.zip |
Expand EXTRACT_SUBVECTOR
llvm-svn: 79621
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index 3ceedd714aa..c55b7b4a7dc 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/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); |