summaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorMichael Liao <michael.liao@intel.com>2012-10-19 03:17:00 +0000
committerMichael Liao <michael.liao@intel.com>2012-10-19 03:17:00 +0000
commit9aecdb51c743f13f88748ef3c539a3e6e6df9e99 (patch)
treebbd88124e98cdca022765fa494b50ff78bb5a358 /lib/CodeGen
parent89e7b356f270e29c2e9e18c6bbd30e5925585f06 (diff)
downloadllvm-9aecdb51c743f13f88748ef3c539a3e6e6df9e99.tar.gz
llvm-9aecdb51c743f13f88748ef3c539a3e6e6df9e99.tar.bz2
llvm-9aecdb51c743f13f88748ef3c539a3e6e6df9e99.tar.xz
Simplify condition checking as CONCAT assume all inputs of the same type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166260 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/DAGCombiner.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index 22270968e3..17386b74e3 100644
--- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -8629,9 +8629,9 @@ SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
// (extract_subvec (concat V1, V2, ...), i)
// Into:
// Vi if possible
- for (unsigned i = 0, e = V->getNumOperands(); i != e; ++i)
- if (V->getOperand(i).getValueType() != NVT)
- return SDValue();
+ // Only operand 0 is checked as 'concat' assumes all inputs of the same type.
+ if (V->getOperand(0).getValueType() != NVT)
+ return SDValue();
unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
unsigned NumElems = NVT.getVectorNumElements();
assert((Idx % NumElems) == 0 &&