summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMISelLowering.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-08-26 16:26:09 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-08-26 16:26:09 +0000
commit0f756b27ae5810c89462ddf1a9c757ed3844e5df (patch)
tree2dbab844746fb3dccd68df89d0f89b4a8511e036 /llvm/lib/Target/ARM/ARMISelLowering.cpp
parent6885d337539d1a2218c295af16ea188f80e63502 (diff)
downloadbcm5719-llvm-0f756b27ae5810c89462ddf1a9c757ed3844e5df.tar.gz
bcm5719-llvm-0f756b27ae5810c89462ddf1a9c757ed3844e5df.zip
Expand scalar_to_vector - we don't have any isel logic for it now
llvm-svn: 80107
Diffstat (limited to 'llvm/lib/Target/ARM/ARMISelLowering.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp
index 7d8362c93da..7d308ca805a 100644
--- a/llvm/lib/Target/ARM/ARMISelLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp
@@ -78,7 +78,7 @@ void ARMTargetLowering::addTypeForNEON(EVT VT, EVT PromotedLdStVT,
setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT.getSimpleVT(), Custom);
setOperationAction(ISD::BUILD_VECTOR, VT.getSimpleVT(), Custom);
setOperationAction(ISD::VECTOR_SHUFFLE, VT.getSimpleVT(), Custom);
- setOperationAction(ISD::SCALAR_TO_VECTOR, VT.getSimpleVT(), Custom);
+ setOperationAction(ISD::SCALAR_TO_VECTOR, VT.getSimpleVT(), Expand);
setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Custom);
setOperationAction(ISD::EXTRACT_SUBVECTOR, VT.getSimpleVT(), Expand);
if (VT.isInteger()) {
OpenPOWER on IntegriCloud