Home
last modified time | relevance | path

Searched refs:BlockQueue (Results 1 – 1 of 1) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1037 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
1040 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
1048 BlockQueue.push_back(B); in fillReachableBlocks()
1051 while (!BlockQueue.empty()) { in fillReachableBlocks()
1052 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
1053 BlockQueue.pop_front(); in fillReachableBlocks()
1058 BlockQueue.push_back(*I); in fillReachableBlocks()
1071 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
1072 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
1073 BlockQueue.pop_front(); in checkFallThroughIntoBlock()
[all …]