From: Kazu Hirata Date: Sat, 26 Nov 2022 22:52:33 +0000 (-0800) Subject: [LiveDebugValues] Use std::optional in InstrRefBasedImpl.cpp (NFC) X-Git-Tag: upstream/17.0.6~26410 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ff6ed810381846c37be960e13d7f71596226a3f;p=platform%2Fupstream%2Fllvm.git [LiveDebugValues] Use std::optional in InstrRefBasedImpl.cpp (NFC) This is part of an effort to migrate from llvm::Optional to std::optional: https://discourse.llvm.org/t/deprecating-llvm-optional-x-hasvalue-getvalue-getvalueor/63716 --- diff --git a/llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp b/llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp index f6a55db..11bb3ee 100644 --- a/llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp +++ b/llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp @@ -127,6 +127,7 @@ #include "InstrRefBasedImpl.h" #include "LiveDebugValues.h" +#include using namespace llvm; using namespace LiveDebugValues; @@ -740,7 +741,7 @@ public: // Examine the remaining variable locations: if we can find the same value // again, we can recover the location. - Optional NewLoc; + std::optional NewLoc; for (auto Loc : MTracker->locations()) if (Loc.Value == OldValue) NewLoc = Loc.Idx; @@ -1560,7 +1561,7 @@ bool InstrRefBasedLDV::transferDebugInstrRef(MachineInstr &MI, // Pick a location for the machine value number, if such a location exists. // (This information could be stored in TransferTracker to make it faster). - Optional FoundLoc; + std::optional FoundLoc; for (auto Location : MTracker->locations()) { LocIdx CurL = Location.Idx; ValueIDNum ID = MTracker->readMLoc(CurL); @@ -1913,7 +1914,7 @@ bool InstrRefBasedLDV::transferSpillOrRestoreInst(MachineInstr &MI) { // continue past this store. for (unsigned SlotIdx = 0; SlotIdx < MTracker->NumSlotIdxes; ++SlotIdx) { unsigned SpillID = MTracker->getSpillIDWithIdx(*Loc, SlotIdx); - Optional MLoc = MTracker->getSpillMLoc(SpillID); + std::optional MLoc = MTracker->getSpillMLoc(SpillID); if (!MLoc) continue;