File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1401,8 +1401,8 @@ enum NodeType {
1401
1401
FAKE_USE,
1402
1402
1403
1403
// / OutChain = CHAIN_BARRIER(InChain) marks that optimizations should not
1404
- // / optimize any users of a chain that contains a CHAIN_BARRIER use a new
1405
- // / chain from a point earlier than the CHAIN_BARRIER.
1404
+ // / optimize any users of a chain that contains a CHAIN_BARRIER to use a chain
1405
+ // / from a point earlier than the CHAIN_BARRIER.
1406
1406
CHAIN_BARRIER,
1407
1407
1408
1408
// / GC_TRANSITION_START/GC_TRANSITION_END - These operators mark the
Original file line number Diff line number Diff line change @@ -811,7 +811,7 @@ SDValue DAGTypeLegalizer::SoftenFloatRes_UnaryWithTwoFPResults(
811
811
SmallVector<EVT, 3 > OpsVT = {VT};
812
812
813
813
std::array<SDValue, 2 > StackSlots;
814
- for (auto [ ResNum, _] : enumerate( N->values ()) ) {
814
+ for (unsigned ResNum = 0 ; ResNum < N->getNumValues (); ++ResNum ) {
815
815
if (ResNum == CallRetResNo)
816
816
continue ;
817
817
SDValue StackSlot = DAG.CreateStackTemporary (NVT);
You can’t perform that action at this time.
0 commit comments