Home
last modified time | relevance | path

Searched defs:PGOEdge (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp520 struct PGOEdge { struct
523 const BasicBlock *SrcBB;
524 const BasicBlock *DestBB;
525 uint64_t Weight;
526 bool InMST = false;
527 bool Removed = false;
528 bool IsCritical = false;
530 PGOEdge(const BasicBlock *Src, const BasicBlock *Dest, uint64_t W = 1) in PGOEdge() argument
534 std::string infoString() const { in infoString()