mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Silence compiler warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143308 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5157588840
commit
50bf86ea8a
@ -6988,14 +6988,14 @@ SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
|
||||
DAG.getConstant(0, InScalarTy);
|
||||
|
||||
unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
|
||||
SmallVector<SDValue,8> Ops(NewBVElems , Filler);
|
||||
SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
|
||||
|
||||
// Populate the new build_vector
|
||||
for (unsigned i=0; i < N->getNumOperands(); ++i) {
|
||||
SDValue Cast = N->getOperand(i);
|
||||
assert(Cast.getOpcode() == ISD::ANY_EXTEND ||
|
||||
Cast.getOpcode() == ISD::ZERO_EXTEND ||
|
||||
Cast.getOpcode() == ISD::UNDEF && "Invalid cast opcode");
|
||||
assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
|
||||
Cast.getOpcode() == ISD::ZERO_EXTEND ||
|
||||
Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
|
||||
SDValue In;
|
||||
if (Cast.getOpcode() == ISD::UNDEF)
|
||||
In = DAG.getUNDEF(InScalarTy);
|
||||
|
Loading…
x
Reference in New Issue
Block a user