[RDF] Remove unused variant of getNextShadow, NFC
authorKrzysztof Parzyszek <kparzysz@quicinc.com>
Tue, 6 Jun 2023 19:21:45 +0000 (12:21 -0700)
committerKrzysztof Parzyszek <kparzysz@quicinc.com>
Wed, 14 Jun 2023 16:12:08 +0000 (09:12 -0700)
llvm/include/llvm/CodeGen/RDFGraph.h
llvm/lib/CodeGen/RDFGraph.cpp

index e865bc8..b2d6d16 100644 (file)
@@ -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;
 
index 013cced..9dd3a9d 100644 (file)
@@ -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) {