diff options
author | Craig Topper <craig.topper@gmail.com> | 2017-02-04 23:26:34 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2017-02-04 23:26:34 +0000 |
commit | ceaf9c1633698bd8a5d2845a0c401ae72a166d8a (patch) | |
tree | 6ef9bcf3435f767878818f9e19c66194b8014116 /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | e49cdfbeea99ba94ed3d8a46b9943b272dbd9c5f (diff) | |
download | bcm5719-llvm-ceaf9c1633698bd8a5d2845a0c401ae72a166d8a.tar.gz bcm5719-llvm-ceaf9c1633698bd8a5d2845a0c401ae72a166d8a.zip |
[DAGCombiner] In visitINSERT_VECTOR_ELT, move check for BUILD_VECTOR being legal below code that just canonicalizes INSERT_VECTOR_ELT without creating BUILD_VECTORS.
llvm-svn: 294108
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index b4a04ccbe62..8a85feba1c4 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -12777,10 +12777,6 @@ SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) { EVT VT = InVec.getValueType(); - // If we can't generate a legal BUILD_VECTOR, exit - if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) - return SDValue(); - // Check that we know which element is being inserted if (!isa<ConstantSDNode>(EltNo)) return SDValue(); @@ -12807,6 +12803,10 @@ SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) { } } + // If we can't generate a legal BUILD_VECTOR, exit + if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) + return SDValue(); + // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially // be converted to a BUILD_VECTOR). Fill in the Ops vector with the // vector elements. |