aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMISelDAGToDAG.cpp
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2009-10-07 22:57:01 +0000
committerBob Wilson <bob.wilson@apple.com>2009-10-07 22:57:01 +0000
commita4288080e62c6ecf94ebeafe84ab33a3b627d209 (patch)
treecb1cd54eb4b9d3f6df5d91a6823656b0f10fcc66 /lib/Target/ARM/ARMISelDAGToDAG.cpp
parent9f3a559dff691bc1ed85089cb0870cf30a4a2d96 (diff)
downloadexternal_llvm-a4288080e62c6ecf94ebeafe84ab33a3b627d209.zip
external_llvm-a4288080e62c6ecf94ebeafe84ab33a3b627d209.tar.gz
external_llvm-a4288080e62c6ecf94ebeafe84ab33a3b627d209.tar.bz2
Add codegen support for NEON vld2 intrinsics with <1 x i64> vectors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83502 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMISelDAGToDAG.cpp')
-rw-r--r--lib/Target/ARM/ARMISelDAGToDAG.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMISelDAGToDAG.cpp b/lib/Target/ARM/ARMISelDAGToDAG.cpp
index 713cc2e..27b0ed2 100644
--- a/lib/Target/ARM/ARMISelDAGToDAG.cpp
+++ b/lib/Target/ARM/ARMISelDAGToDAG.cpp
@@ -1357,6 +1357,7 @@ SDNode *ARMDAGToDAGISel::Select(SDValue Op) {
case MVT::v4i16: Opc = ARM::VLD2d16; break;
case MVT::v2f32:
case MVT::v2i32: Opc = ARM::VLD2d32; break;
+ case MVT::v1i64: Opc = ARM::VLD2d64; break;
}
SDValue Chain = N->getOperand(0);
const SDValue Ops[] = { MemAddr, MemUpdate, MemOpc, Chain };