Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1235 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
1238 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
1246 BlockQueue.push_back(B); in fillReachableBlocks()
1249 while (!BlockQueue.empty()) { in fillReachableBlocks()
1250 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
1251 BlockQueue.pop_front(); in fillReachableBlocks()
1254 BlockQueue.push_back(B); in fillReachableBlocks()
1266 std::deque<const CFGBlock *> BlockQueue(B.pred_begin(), B.pred_end()); in checkFallThroughIntoBlock() local
1267 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
1268 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
[all …]