mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
fix typo; NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242947 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
88836083ae
commit
6b35fdb647
@ -5354,7 +5354,7 @@ static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
|
||||
return NV;
|
||||
}
|
||||
|
||||
static SDValue ConvertI1VectorToInterger(SDValue Op, SelectionDAG &DAG) {
|
||||
static SDValue ConvertI1VectorToInteger(SDValue Op, SelectionDAG &DAG) {
|
||||
assert(ISD::isBuildVectorOfConstantSDNodes(Op.getNode()) &&
|
||||
Op.getScalarValueSizeInBits() == 1 &&
|
||||
"Can not convert non-constant vector");
|
||||
@ -5391,7 +5391,7 @@ X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
|
||||
}
|
||||
|
||||
if (ISD::isBuildVectorOfConstantSDNodes(Op.getNode())) {
|
||||
SDValue Imm = ConvertI1VectorToInterger(Op, DAG);
|
||||
SDValue Imm = ConvertI1VectorToInteger(Op, DAG);
|
||||
if (Imm.getValueSizeInBits() == VT.getSizeInBits())
|
||||
return DAG.getBitcast(VT, Imm);
|
||||
SDValue ExtVec = DAG.getBitcast(MVT::v8i1, Imm);
|
||||
@ -13965,12 +13965,12 @@ SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
|
||||
if (VT.isVector() && VT.getScalarType() == MVT::i1) {
|
||||
SDValue Op1Scalar;
|
||||
if (ISD::isBuildVectorOfConstantSDNodes(Op1.getNode()))
|
||||
Op1Scalar = ConvertI1VectorToInterger(Op1, DAG);
|
||||
Op1Scalar = ConvertI1VectorToInteger(Op1, DAG);
|
||||
else if (Op1.getOpcode() == ISD::BITCAST && Op1.getOperand(0))
|
||||
Op1Scalar = Op1.getOperand(0);
|
||||
SDValue Op2Scalar;
|
||||
if (ISD::isBuildVectorOfConstantSDNodes(Op2.getNode()))
|
||||
Op2Scalar = ConvertI1VectorToInterger(Op2, DAG);
|
||||
Op2Scalar = ConvertI1VectorToInteger(Op2, DAG);
|
||||
else if (Op2.getOpcode() == ISD::BITCAST && Op2.getOperand(0))
|
||||
Op2Scalar = Op2.getOperand(0);
|
||||
if (Op1Scalar.getNode() && Op2Scalar.getNode()) {
|
||||
|
Loading…
Reference in New Issue
Block a user