forked from OSchip/llvm-project
[RISCV] Simplify some code in vector fp<->int handling. NFC
We changed the way container types are selected since this code was written. We no longer need to use the largest type.
This commit is contained in:
parent
c0bc461999
commit
61595c45af
|
@ -3581,16 +3581,10 @@ SDValue RISCVTargetLowering::LowerOperation(SDValue Op,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
MVT ContainerVT, SrcContainerVT;
|
MVT ContainerVT = getContainerForFixedLengthVector(VT);
|
||||||
// Derive the reference container type from the larger vector type.
|
MVT SrcContainerVT = getContainerForFixedLengthVector(SrcVT);
|
||||||
if (SrcEltSize > EltSize) {
|
assert(ContainerVT.getVectorElementCount() == SrcContainerVT.getVectorElementCount() &&
|
||||||
SrcContainerVT = getContainerForFixedLengthVector(SrcVT);
|
"Expected same element count");
|
||||||
ContainerVT =
|
|
||||||
SrcContainerVT.changeVectorElementType(VT.getVectorElementType());
|
|
||||||
} else {
|
|
||||||
ContainerVT = getContainerForFixedLengthVector(VT);
|
|
||||||
SrcContainerVT = ContainerVT.changeVectorElementType(SrcEltVT);
|
|
||||||
}
|
|
||||||
|
|
||||||
SDValue Mask, VL;
|
SDValue Mask, VL;
|
||||||
std::tie(Mask, VL) = getDefaultVLOps(VT, ContainerVT, DL, DAG, Subtarget);
|
std::tie(Mask, VL) = getDefaultVLOps(VT, ContainerVT, DL, DAG, Subtarget);
|
||||||
|
|
Loading…
Reference in New Issue