mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Keep coding standard. Don't evaluate getNumOperands() every time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166531 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
30f57da439
commit
adf38913f8
@ -8434,7 +8434,7 @@ SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
|
||||
SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
|
||||
|
||||
// Populate the new build_vector
|
||||
for (unsigned i=0; i < N->getNumOperands(); ++i) {
|
||||
for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
|
||||
SDValue Cast = N->getOperand(i);
|
||||
assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
|
||||
Cast.getOpcode() == ISD::ZERO_EXTEND ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user