@@ -320,7 +320,7 @@ SDValue VectorLegalizer::PromoteVectorOp(SDValue Op) {
320
320
assert (Op.getNode ()->getNumValues () == 1 &&
321
321
" Can't promote a vector with multiple results!" );
322
322
MVT NVT = TLI.getTypeToPromoteTo (Op.getOpcode (), VT);
323
- SDLoc dl (Op);;
323
+ SDLoc dl (Op);
324
324
SmallVector<SDValue, 4 > Operands (Op.getNumOperands ());
325
325
326
326
for (unsigned j = 0 ; j != Op.getNumOperands (); ++j) {
@@ -357,7 +357,7 @@ SDValue VectorLegalizer::PromoteVectorOpINT_TO_FP(SDValue Op) {
357
357
// Build a new vector type and check if it is legal.
358
358
MVT NVT = MVT::getVectorVT (EltVT.getSimpleVT (), NumElts);
359
359
360
- SDLoc dl (Op);;
360
+ SDLoc dl (Op);
361
361
SmallVector<SDValue, 4 > Operands (Op.getNumOperands ());
362
362
363
363
unsigned Opc = Op.getOpcode () == ISD::UINT_TO_FP ? ISD::ZERO_EXTEND :
@@ -375,7 +375,7 @@ SDValue VectorLegalizer::PromoteVectorOpINT_TO_FP(SDValue Op) {
375
375
376
376
377
377
SDValue VectorLegalizer::ExpandLoad (SDValue Op) {
378
- SDLoc dl (Op);;
378
+ SDLoc dl (Op);
379
379
LoadSDNode *LD = cast<LoadSDNode>(Op.getNode ());
380
380
SDValue Chain = LD->getChain ();
381
381
SDValue BasePTR = LD->getBasePtr ();
@@ -519,7 +519,7 @@ SDValue VectorLegalizer::ExpandLoad(SDValue Op) {
519
519
}
520
520
521
521
SDValue VectorLegalizer::ExpandStore (SDValue Op) {
522
- SDLoc dl (Op);;
522
+ SDLoc dl (Op);
523
523
StoreSDNode *ST = cast<StoreSDNode>(Op.getNode ());
524
524
SDValue Chain = ST->getChain ();
525
525
SDValue BasePTR = ST->getBasePtr ();
@@ -574,7 +574,7 @@ SDValue VectorLegalizer::ExpandSELECT(SDValue Op) {
574
574
// operands are vectors. Lower this select to VSELECT and implement it
575
575
// using XOR AND OR. The selector bit is broadcasted.
576
576
EVT VT = Op.getValueType ();
577
- SDLoc DL (Op);;
577
+ SDLoc DL (Op);
578
578
579
579
SDValue Mask = Op.getOperand (0 );
580
580
SDValue Op1 = Op.getOperand (1 );
@@ -637,7 +637,7 @@ SDValue VectorLegalizer::ExpandSEXTINREG(SDValue Op) {
637
637
TLI.getOperationAction (ISD::SHL, VT) == TargetLowering::Expand)
638
638
return DAG.UnrollVectorOp (Op.getNode ());
639
639
640
- SDLoc DL (Op);;
640
+ SDLoc DL (Op);
641
641
EVT OrigTy = cast<VTSDNode>(Op->getOperand (1 ))->getVT ();
642
642
643
643
unsigned BW = VT.getScalarType ().getSizeInBits ();
@@ -652,7 +652,7 @@ SDValue VectorLegalizer::ExpandSEXTINREG(SDValue Op) {
652
652
SDValue VectorLegalizer::ExpandVSELECT (SDValue Op) {
653
653
// Implement VSELECT in terms of XOR, AND, OR
654
654
// on platforms which do not support blend natively.
655
- SDLoc DL (Op);;
655
+ SDLoc DL (Op);
656
656
657
657
SDValue Mask = Op.getOperand (0 );
658
658
SDValue Op1 = Op.getOperand (1 );
@@ -698,7 +698,7 @@ SDValue VectorLegalizer::ExpandVSELECT(SDValue Op) {
698
698
699
699
SDValue VectorLegalizer::ExpandUINT_TO_FLOAT (SDValue Op) {
700
700
EVT VT = Op.getOperand (0 ).getValueType ();
701
- SDLoc DL (Op);;
701
+ SDLoc DL (Op);
702
702
703
703
// Make sure that the SINT_TO_FP and SRL instructions are available.
704
704
if (TLI.getOperationAction (ISD::SINT_TO_FP, VT) == TargetLowering::Expand ||
@@ -751,7 +751,7 @@ SDValue VectorLegalizer::UnrollVSETCC(SDValue Op) {
751
751
EVT EltVT = VT.getVectorElementType ();
752
752
SDValue LHS = Op.getOperand (0 ), RHS = Op.getOperand (1 ), CC = Op.getOperand (2 );
753
753
EVT TmpEltVT = LHS.getValueType ().getVectorElementType ();
754
- SDLoc dl (Op);;
754
+ SDLoc dl (Op);
755
755
SmallVector<SDValue, 8 > Ops (NumElems);
756
756
for (unsigned i = 0 ; i < NumElems; ++i) {
757
757
SDValue LHSElem = DAG.getNode (ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, LHS,
0 commit comments