From: Krzysztof Parzyszek Date: Tue, 6 Jun 2023 19:21:45 +0000 (-0700) Subject: [RDF] Remove unused variant of getNextShadow, NFC X-Git-Tag: upstream/17.0.6~5091 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=198d647fad759b5320ec528a33565c3667c69b65;p=platform%2Fupstream%2Fllvm.git [RDF] Remove unused variant of getNextShadow, NFC --- diff --git a/llvm/include/llvm/CodeGen/RDFGraph.h b/llvm/include/llvm/CodeGen/RDFGraph.h index e865bc8..b2d6d16 100644 --- a/llvm/include/llvm/CodeGen/RDFGraph.h +++ b/llvm/include/llvm/CodeGen/RDFGraph.h @@ -776,7 +776,6 @@ struct DataFlowGraph { Ref getNextRelated(Instr IA, Ref RA) const; Ref getNextShadow(Instr IA, Ref RA, bool Create); - Ref getNextShadow(Instr IA, Ref RA) const; NodeList getRelatedRefs(Instr IA, Ref RA) const; diff --git a/llvm/lib/CodeGen/RDFGraph.cpp b/llvm/lib/CodeGen/RDFGraph.cpp index 013cced..9dd3a9d 100644 --- a/llvm/lib/CodeGen/RDFGraph.cpp +++ b/llvm/lib/CodeGen/RDFGraph.cpp @@ -1194,17 +1194,6 @@ Ref DataFlowGraph::getNextShadow(Instr IA, Ref RA, bool Create) { return NA; } -// Get the next shadow node in IA corresponding to RA. Return null-address -// if such a node does not exist. -Ref DataFlowGraph::getNextShadow(Instr IA, Ref RA) const { - assert(IA.Id != 0 && RA.Id != 0); - uint16_t Flags = RA.Addr->getFlags() | NodeAttrs::Shadow; - auto IsShadow = [Flags](Ref TA) -> bool { - return TA.Addr->getFlags() == Flags; - }; - return locateNextRef(IA, RA, IsShadow).second; -} - // Create a new statement node in the block node BA that corresponds to // the machine instruction MI. void DataFlowGraph::buildStmt(Block BA, MachineInstr &In) {