aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorNadav Rotem <nadav.rotem@intel.com>2012-01-10 14:28:46 +0000
committerNadav Rotem <nadav.rotem@intel.com>2012-01-10 14:28:46 +0000
commit6c0366cb2588ae49ef6e2f892db2099d41d85391 (patch)
tree027604412b0571edc47eee668db2041a20b86005 /lib/CodeGen
parent66a7fd78ee761fdf9c7f9ec13241949da3f6df24 (diff)
downloadexternal_llvm-6c0366cb2588ae49ef6e2f892db2099d41d85391.tar.gz
external_llvm-6c0366cb2588ae49ef6e2f892db2099d41d85391.tar.bz2
external_llvm-6c0366cb2588ae49ef6e2f892db2099d41d85391.zip
Fix a bug in the legalization of shuffle vectors. When we emulate shuffles using BUILD_VECTORS we may be using a BV of different type. Make sure to cast it back.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147851 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/LegalizeDAG.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
index e69cfd0bf4..4c5bb9e505 100644
--- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
@@ -2862,8 +2862,10 @@ void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
Op1,
DAG.getIntPtrConstant(Idx - NumElems)));
}
-
+
Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
+ // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
+ Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Results.push_back(Tmp1);
break;
}