HomeSort by relevance Sort by last modified time
    Searched full:unreachableblocks (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Utils/
UnifyFunctionExitNodes.cpp 52 std::vector<BasicBlock*> UnreachableBlocks;
57 UnreachableBlocks.push_back(&I);
60 if (UnreachableBlocks.empty()) {
62 } else if (UnreachableBlocks.size() == 1) {
63 UnreachableBlock = UnreachableBlocks.front();
69 for (std::vector<BasicBlock*>::iterator I = UnreachableBlocks.begin(),
70 E = UnreachableBlocks.end(); I != E; ++I) {
  /external/llvm/lib/CodeGen/
Analysis.cpp 694 SmallVector<const MachineBasicBlock *, 16> UnreachableBlocks;
703 UnreachableBlocks.push_back(&MBB);
727 for (const MachineBasicBlock *MBB : UnreachableBlocks)

Completed in 554 milliseconds